import { THEME_TYPE as Theme } from "../theme/themeMap"; import { Variant, Type, Size, ColorProps, SizeProps, ShapeProps, CustomStyles } from './types'; export default function getStyles({ theme, variant, type, size, fullWidth, width, iconOnly, round, largerTextEnabled, customStyles }: { theme: Theme; variant: Variant; type: Type; size: Size; fullWidth?: boolean; width?: string; iconOnly?: boolean; round?: boolean; largerTextEnabled?: boolean; customStyles: CustomStyles; }): ColorProps & SizeProps & ShapeProps;