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