bits-ui
Version:
The headless components for Svelte.
30 lines (29 loc) • 1.03 kB
TypeScript
import { SvelteComponent } from "svelte";
import type { HeadingProps } from "../index.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;
};
};
exports?: {} | undefined;
bindings?: string | undefined;
};
export type DateRangePickerHeadingProps = typeof __propDef.props;
export type DateRangePickerHeadingEvents = typeof __propDef.events;
export type DateRangePickerHeadingSlots = typeof __propDef.slots;
export default class DateRangePickerHeading extends SvelteComponent<DateRangePickerHeadingProps, DateRangePickerHeadingEvents, DateRangePickerHeadingSlots> {
}
export {};