import type { CSSGlobalValue, CSSIntrinsicSizingKeywords, DesignSystemSize, OverflowValue, PositionValue } from './types'; export declare const DESIGN_SYSTEM_SIZES: DesignSystemSize[]; export declare const SYSTEM_PADDING_VERTICAL = "var(--vkui--size_base_padding_vertical--regular)"; export declare const SYSTEM_PADDING_HORIZONTAL = "var(--vkui--size_base_padding_horizontal--regular)"; export declare const LAYOUT_PROPS: { padding: string[]; paddingInline: string[]; paddingBlock: string[]; paddingInlineStart: string[]; paddingInlineEnd: string[]; paddingBlockStart: string[]; paddingBlockEnd: string[]; inlineSize: (CSSGlobalValue | CSSIntrinsicSizingKeywords)[]; minInlineSize: ("initial" | "inherit" | "unset" | "fit-content" | "max-content" | "min-content")[]; maxInlineSize: ("initial" | "inherit" | "unset" | "fit-content" | "max-content" | "min-content")[]; blockSize: (CSSGlobalValue | CSSIntrinsicSizingKeywords)[]; minBlockSize: ("initial" | "inherit" | "unset" | "fit-content" | "max-content" | "min-content")[]; maxBlockSize: ("initial" | "inherit" | "unset" | "fit-content" | "max-content" | "min-content")[]; inset: string[]; insetInline: string[]; insetBlock: string[]; insetInlineStart: string[]; insetInlineEnd: string[]; insetBlockStart: string[]; insetBlockEnd: string[]; position: PositionValue[]; flexGrow: CSSGlobalValue[]; flexShrink: CSSGlobalValue[]; flexBasis: string[]; alignSelf: string[]; justifySelf: string[]; overflow: OverflowValue[]; overflowBlock: OverflowValue[]; overflowInline: OverflowValue[]; }; export type LayoutPropKeys = keyof typeof LAYOUT_PROPS; //# sourceMappingURL=layoutProps.d.ts.map