Graduation
/
ui
/node_modules
/bits-ui
/dist
/bits
/range-calendar
/components
/range-calendar-heading.svelte.d.ts
import { SvelteComponent } from "svelte"; | |
import type { HeadingProps } from "../types.js"; | |
declare const __propDef: { | |
props: HeadingProps; | |
events: { | |
[evt: string]: CustomEvent<any>; | |
}; | |
slots: { | |
default: { | |
builder: { | |
'aria-hidden': boolean; | |
'data-disabled': string | undefined; | |
} & { | |
[x: `data-melt-${string}`]: ""; | |
} & { | |
action: import("svelte/action").Action<any, any, Record<never, any>>; | |
}; | |
headingValue: string; | |
}; | |
}; | |
}; | |
export type RangeCalendarHeadingProps = typeof __propDef.props; | |
export type RangeCalendarHeadingEvents = typeof __propDef.events; | |
export type RangeCalendarHeadingSlots = typeof __propDef.slots; | |
export default class RangeCalendarHeading extends SvelteComponent<RangeCalendarHeadingProps, RangeCalendarHeadingEvents, RangeCalendarHeadingSlots> { | |
} | |
export {}; | |