type SizeMapperType = 'small' | 'medium' | 'large'; export declare const sizeMapper: (type: SizeMapperType) => "4xs" | "3xs" | "2xs" | "xs" | "sm" | "md" | "lg" | "xl" | null | undefined; export {};