import { SvelteComponent } from "svelte"; import type { GridRowProps } from "../types.js"; declare const __propDef: { props: GridRowProps; events: { [evt: string]: CustomEvent; }; slots: { default: { attrs: Record; }; }; }; export type CalendarGridRowProps = typeof __propDef.props; export type CalendarGridRowEvents = typeof __propDef.events; export type CalendarGridRowSlots = typeof __propDef.slots; export default class CalendarGridRow extends SvelteComponent { } export {};