import { Sizing } from "lib"; import { Color, IconVariant } from "../../../lib/inputTypes"; export type WrapperProportionTypes = { paddingX: string; paddingY: string; }; export declare const wrapperProportions: { [size: string]: WrapperProportionTypes; }; export declare const iconSizes: { [size: string]: Sizing; }; export type ShapeTypes = { rounded: string; border: string; ring: string; shadow: string; }; export declare const shape: { [style: string]: ShapeTypes; }; export declare const getIconColors: (variant: IconVariant, color: Color) => { textColor: string; bgColor: string; borderColor: string; ringColor: string; };