interface ModalColors { body: string; containerBackground: string; contentBackground: string; headerBasic: string; headerBasicBackground: string; headerPrimary: string; headerPrimaryBackground: string; } interface ModalSizes { contentDoubleExtraLargeMaxWidth: string; contentDoubleExtraLargeMinWidth: string; contentExtraLargeMaxWidth: string; contentExtraLargeMinWidth: string; contentLargeMaxWidth: string; contentLargeMinWidth: string; contentMediumMaxWidth: string; contentMediumMinWidth: string; contentSmallMaxWidth: string; contentSmallMinWidth: string; } interface ModalSpace { bodyPadding: string; footerPadding: string; headerPadding: string; popUpBodyPadding: string; popUpIconMarginRight: string; popUpTitleMarginBottom: string; wrapperPaddingY: string; } interface ModalFontSizes { body: string; header: string; popUpIcon: string; } interface ModalFontWeights { body: number; header: number; } interface ModalLineHeights { body: string; header: string; } interface ModalRadii { content: string; header: string; } declare const modalColors: ModalColors; declare const modalSizes: ModalSizes; declare const modalSpace: ModalSpace; declare const modalFontSizes: ModalFontSizes; declare const modalFontWeights: ModalFontWeights; declare const modalLineHeights: ModalLineHeights; declare const modalRadii: ModalRadii; export { modalColors, modalSizes, modalSpace, modalFontSizes, modalFontWeights, modalLineHeights, modalRadii, };