File size: 1,051 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import { SvelteComponent } from "svelte";
import type { GridProps } from "../types.js";
declare const __propDef: {
props: GridProps;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
builder: {
tabindex: number;
role: string;
'aria-readonly': "true" | undefined;
'aria-disabled': "true" | undefined;
'data-readonly': string | undefined;
'data-disabled': string | undefined;
} & {
[x: `data-melt-${string}`]: "";
} & {
action: import("svelte/action").Action<any, any, Record<never, any>>;
};
};
};
};
export type DatePickerGridProps = typeof __propDef.props;
export type DatePickerGridEvents = typeof __propDef.events;
export type DatePickerGridSlots = typeof __propDef.slots;
export default class DatePickerGrid extends SvelteComponent<DatePickerGridProps, DatePickerGridEvents, DatePickerGridSlots> {
}
export {};
|