export declare const getButtonVariants: (theme: any) => { primary: { backgroundColor: any; '&:hover': { backgroundColor: any; }; '&:active': { backgroundColor: any; }; }; danger: { backgroundColor: any; '&:hover': { backgroundColor: any; }; '&:active': { backgroundColor: any; }; }; success: { backgroundColor: any; '&:hover': { backgroundColor: any; }; '&:active': { backgroundColor: any; }; }; }; export declare const Button: import("styled-components").StyledComponent<"button", any, {}, never>;