import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { /** * Number of rows in the grid */ rows: number; /** * Number of columns in the grid */ columns: number; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type FixedGridProps = typeof __propDef.props; export type FixedGridEvents = typeof __propDef.events; export type FixedGridSlots = typeof __propDef.slots; /** * FixedGrid * * Used for creating a row x column grid * * Props: * - rows: (number): number of rows in the grid * - column (number): number of columns in the grid * * Slots: * - default: contents of the FixedGrid * * Css Variables: * - fixedGridGap (default: 2rem): Gap between elements in the grid */ export default class FixedGrid extends SvelteComponentTyped { } export {};