import { BorderRadiusBottomLeftStyleType, BorderRadiusBottomRightStyleType, BorderRadiusStyleType, BorderRadiusTopLeftStyleType, BorderRadiusTopRightStyleType, BorderStyleType, BorderWidthStyleType, BottomStyleType, BoxShadowStyleType, FontSizeStyleType, GapStyleType, GridTemplateColumnsStyleType, HeightStyleType, LeftStyleType, LetterSpacingStyleType, LineHeightStyleType, MarginBottomStyleType, MarginLeftStyleType, MarginRightStyleType, MarginStyleType, MarginTopStyleType, MaxHeightStyleType, MaxWidthStyleType, MinHeightStyleType, MinWidthStyleType, PaddingBottomStyleType, PaddingLeftStyleType, PaddingRightStyleType, PaddingStyleType, PaddingTopStyleType, RightStyleType, SizeStyleType, TopStyleType, WidthStyleType } from "../../storefront-models/src"; export declare const getFormattedStyleVariable: (property: (typeof DYNAMIC_STYLE_PROPERTIES)[number], value: any) => any; export declare const getFormattedShadow: (shadow: BoxShadowStyleType) => string; export declare const getFormattedGridTemplateColumns: (gridTemplateColumns?: GridTemplateColumnsStyleType) => string | undefined; export declare const getFormattedPaddingSize: (padding?: PaddingStyleType) => string; export declare const getFormattedPaddingMarginSize: (padding?: MarginStyleType) => string; export declare const getFormattedBorderRadiusSize: (borderRadius?: BorderRadiusStyleType) => string; export declare const getFormattedSize: (size?: SizeStyleType) => string; export declare const getFormattedPaddingTopSize: (paddingTop?: PaddingTopStyleType) => string; export declare const getFormattedPaddingRightSize: (paddingRight?: PaddingRightStyleType) => string; export declare const getFormattedPaddingBottomSize: (paddingBottom?: PaddingBottomStyleType) => string; export declare const getFormattedPaddingLeftSize: (paddingLeft?: PaddingLeftStyleType) => string; export declare const getFormattedMarginTopSize: (marginTop?: MarginTopStyleType) => string; export declare const getFormattedMarginRightSize: (marginRight?: MarginRightStyleType) => string; export declare const getFormattedMarginBottomSize: (marginBottom?: MarginBottomStyleType) => string; export declare const getFormattedMarginLeftSize: (marginLeft?: MarginLeftStyleType) => string; export declare const getFormattedBorderRadiusTopLeftSize: (borderRadiusTopLeft?: BorderRadiusTopLeftStyleType) => string; export declare const getFormattedBorderRadiusTopRightSize: (borderRadiusTopRight?: BorderRadiusTopRightStyleType) => string; export declare const getFormattedBorderRadiusBottomLeftSize: (borderRadiusBottomLeft?: BorderRadiusBottomLeftStyleType) => string; export declare const getFormattedBorderRadiusBottomRightSize: (borderRadiusBottomRight?: BorderRadiusBottomRightStyleType) => string; export declare const getFormattedFontSize: (fontSize?: FontSizeStyleType) => string; export declare const getFormattedLineHeightSize: (lineHeight?: LineHeightStyleType) => string; export declare const getFormattedLetterSpacingSize: (letterSpacing?: LetterSpacingStyleType) => string; export declare const getFormattedHeightSize: (height?: HeightStyleType) => string; export declare const getFormattedMinHeightSize: (minHeight?: MinHeightStyleType) => string; export declare const getFormattedMaxHeightSize: (maxHeight?: MaxHeightStyleType) => string; export declare const getFormattedWidthSize: (width?: WidthStyleType) => string; export declare const getFormattedMinWidthSize: (minWidth?: MinWidthStyleType) => string; export declare const getFormattedMaxWidthSize: (maxWidth?: MaxWidthStyleType) => string; export declare const getFormattedGapSize: (gap?: GapStyleType) => string; export declare const getFormattedBorderWidthSizeSize: (borderWidth?: BorderWidthStyleType) => string; export declare const getFormattedTopSize: (top?: TopStyleType) => string; export declare const getFormattedRightSize: (right?: RightStyleType) => string; export declare const getFormattedBottomSize: (bottom?: BottomStyleType) => string; export declare const getFormattedLeftSize: (left?: LeftStyleType) => string; export declare const getFormattedBorder: (border?: BorderStyleType) => string; export declare const SIZE_PROPERTIES: string[]; export declare const DYNAMIC_STYLE_PROPERTIES: string[];