import { SvelteComponent } from "svelte"; import type { CellProps } from "../types.js"; declare const __propDef: { props: CellProps; events: { [evt: string]: CustomEvent; }; slots: { default: { attrs: { "aria-disabled": boolean; role: string; }; }; }; }; export type RangeCalendarCellProps = typeof __propDef.props; export type RangeCalendarCellEvents = typeof __propDef.events; export type RangeCalendarCellSlots = typeof __propDef.slots; export default class RangeCalendarCell extends SvelteComponent { } export {};