export function get_grid_context(): any; /** @typedef {typeof __propDef.props} GridProps */ /** @typedef {typeof __propDef.events} GridEvents */ /** @typedef {typeof __propDef.slots} GridSlots */ export default class Grid extends SvelteComponentTyped<{ x?: boolean | undefined; y?: boolean | undefined; ticks?: import("../../types/common").ticks | undefined; }, { [evt: string]: CustomEvent; }, { default: { value: any; first: boolean; last: boolean; i: any; }; }> { } export type GridProps = typeof __propDef.props; export type GridEvents = typeof __propDef.events; export type GridSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { x?: boolean | undefined; y?: boolean | undefined; ticks?: import("../../types/common").ticks | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: { value: any; first: boolean; last: boolean; i: any; }; }; }; export {};