declare function variantSolid(props: Record): { bg: any; color: any; }; declare function variantSubtle(props: Record): { bg: string; color: any; }; declare function variantOutline(props: Record): { borderColor: any; color: any; borderWidth: number; }; declare const _default: { baseStyle: { px: number; textTransform: string; fontSize: string; borderRadius: string; fontWeight: string; }; variants: { solid: typeof variantSolid; subtle: typeof variantSubtle; outline: typeof variantOutline; }; defaultProps: { variant: string; colorScheme: string; }; }; export default _default;