import { Dict } from './../tools'; declare function variantGhost(props: Dict): { _text: { color: any; }; bg?: undefined; } | { _text: { color: any; }; bg: string; }; declare function variantOutline(props: Dict): { _text: { color: any; }; bg?: undefined; border: string; borderColor: any; } | { _text: { color: any; }; bg: string; border: string; borderColor: any; }; declare function variantSolid(props: Dict): { bg: any; }; declare function variantLink(): { padding: number; height: string; _text: { textDecorationLine: string; }; }; declare function variantUnstyled(): { m: number; p: number; }; declare const _default: { baseStyle: { borderRadius: string; display: string; flexDirection: string; justifyContent: string; alignItems: string; }; variants: { ghost: typeof variantGhost; outline: typeof variantOutline; solid: typeof variantSolid; link: typeof variantLink; unstyled: typeof variantUnstyled; }; sizes: { lg: { minH: number; minW: number; _text: { fontSize: string; }; px: number; py: number; }; md: { minH: number; minW: number; _text: { fontSize: string; }; px: number; py: number; }; sm: { minH: number; minW: number; _text: { fontSize: string; }; px: number; py: number; }; xs: { minH: number; minW: number; _text: { fontSize: string; }; px: number; }; }; defaultProps: { variant: string; size: string; colorScheme: string; _text: { fontWeight: string; }; }; }; export default _default;