import { SvelteComponentTyped } from "svelte"; import type { DESIGN_ALIGNMENT_ARGUMENT, DESIGN_ALIGNMENT_X_ARGUMENT, DESIGN_ALIGNMENT_Y_ARGUMENT } from "../../../types/alignments"; import type { DESIGN_POINTS_ARGUMENT } from "../../../types/points"; import type { DESIGN_SPACING_ARGUMENT } from "../../../types/spacings"; declare const __propDef: { props: { [x: string]: any; element?: HTMLDivElement | undefined; points?: DESIGN_POINTS_ARGUMENT | undefined; alignment?: DESIGN_ALIGNMENT_ARGUMENT | undefined; alignment_x?: DESIGN_ALIGNMENT_X_ARGUMENT | undefined; alignment_y?: DESIGN_ALIGNMENT_Y_ARGUMENT | undefined; spacing?: DESIGN_SPACING_ARGUMENT | undefined; spacing_x?: DESIGN_SPACING_ARGUMENT | undefined; spacing_y?: DESIGN_SPACING_ARGUMENT | undefined; class?: string | undefined; id?: string | undefined; name?: string | undefined; style?: string | undefined; tabindex?: string | number | undefined; title?: string | undefined; hidden?: import("../../..").DESIGN_HIDDEN_ARGUMENT | undefined; height?: import("../../../types/sizings").DESIGN_INTRINSIC_SIZING_ARGUMENT | undefined; max_height?: import("../../../types/sizings").DESIGN_INTRINSIC_SIZING_ARGUMENT | undefined; min_height?: import("../../../types/sizings").DESIGN_INTRINSIC_SIZING_ARGUMENT | undefined; width?: import("../../../types/sizings").DESIGN_INTRINSIC_SIZING_ARGUMENT | undefined; max_width?: import("../../../types/sizings").DESIGN_INTRINSIC_SIZING_ARGUMENT | undefined; min_width?: import("../../../types/sizings").DESIGN_INTRINSIC_SIZING_ARGUMENT | undefined; margin?: DESIGN_SPACING_ARGUMENT | undefined; margin_x?: DESIGN_SPACING_ARGUMENT | undefined; margin_y?: DESIGN_SPACING_ARGUMENT | undefined; margin_top?: DESIGN_SPACING_ARGUMENT | undefined; margin_left?: DESIGN_SPACING_ARGUMENT | undefined; margin_bottom?: DESIGN_SPACING_ARGUMENT | undefined; margin_right?: DESIGN_SPACING_ARGUMENT | undefined; padding?: DESIGN_SPACING_ARGUMENT | undefined; padding_x?: DESIGN_SPACING_ARGUMENT | undefined; padding_y?: DESIGN_SPACING_ARGUMENT | undefined; padding_top?: DESIGN_SPACING_ARGUMENT | undefined; padding_left?: DESIGN_SPACING_ARGUMENT | undefined; padding_bottom?: DESIGN_SPACING_ARGUMENT | undefined; padding_right?: DESIGN_SPACING_ARGUMENT | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type GridContainerProps = typeof __propDef.props; export declare type GridContainerEvents = typeof __propDef.events; export declare type GridContainerSlots = typeof __propDef.slots; export default class GridContainer extends SvelteComponentTyped { } export {};