import { SvelteComponentTyped } from "svelte"; import type { DESIGN_ALIGNMENT_ARGUMENT, DESIGN_ALIGNMENT_X_ARGUMENT, DESIGN_ALIGNMENT_Y_ARGUMENT } from "../../../types/alignments"; import type { DESIGN_ORIENTATION_VERTICAL_ARGUMENT } from "../../../types/orientations"; import type { DESIGN_SPACING_ARGUMENT } from "../../../types/spacings"; import type { DESIGN_FLEX_VARIATION_ARGUMENT } from "../../../types/variations"; declare const __propDef: { props: { [x: string]: any; element?: HTMLDivElement | undefined; orientation?: DESIGN_ORIENTATION_VERTICAL_ARGUMENT | undefined; variation?: DESIGN_FLEX_VARIATION_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 StackProps = typeof __propDef.props; export declare type StackEvents = typeof __propDef.events; export declare type StackSlots = typeof __propDef.slots; export default class Stack extends SvelteComponentTyped { } export {};