import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        columns?: number;
        gap?: number;
        columnGap?: number;
        rowGap?: number;
        autoFlow?: 'row' | 'column';
        autoColumns?: string | null;
        template?: string | null;
        templateColumns?: string | null;
        templateRows?: string | null;
        stack?: boolean;
        inline?: boolean;
        items?: 'start' | 'end' | 'center' | 'baseline' | 'stretch' | 'initial';
        justify?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly' | 'initial';
        justifyItems?: 'start' | 'end' | 'center' | 'baseline' | 'stretch' | 'initial';
        content?: 'start' | 'end' | 'center' | 'between' | 'around' | 'evenly' | 'initial';
    };
    events: {
        click: MouseEvent;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type GridProps = typeof __propDef.props;
export type GridEvents = typeof __propDef.events;
export type GridSlots = typeof __propDef.slots;
export default class Grid extends SvelteComponentTyped<GridProps, GridEvents, GridSlots> {
}
export {};
