import { SvelteComponent } from "svelte"; import type { HeadingProps } from "../types.js"; declare const __propDef: { props: HeadingProps; events: { [evt: string]: CustomEvent; }; slots: { default: { builder: { 'aria-hidden': boolean; 'data-disabled': string | undefined; } & { [x: `data-melt-${string}`]: ""; } & { action: import("svelte/action").Action>; }; headingValue: string; }; }; }; export type DatePickerHeadingProps = typeof __propDef.props; export type DatePickerHeadingEvents = typeof __propDef.events; export type DatePickerHeadingSlots = typeof __propDef.slots; export default class DatePickerHeading extends SvelteComponent { } export {};