File size: 615 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { SvelteComponent } from "svelte";
import type { GridHeadProps } from "../types.js";
declare const __propDef: {
    props: GridHeadProps;
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type RangeCalendarGridHeadProps = typeof __propDef.props;
export type RangeCalendarGridHeadEvents = typeof __propDef.events;
export type RangeCalendarGridHeadSlots = typeof __propDef.slots;
export default class RangeCalendarGridHead extends SvelteComponent<RangeCalendarGridHeadProps, RangeCalendarGridHeadEvents, RangeCalendarGridHeadSlots> {
}
export {};