import { VariantProps } from "../../theme"; import { ButtonStyleProps } from "./Button.styled"; export interface ButtonVariants { primary: VariantProps; secondary: VariantProps; danger: VariantProps; } export declare type ButtonTheme = ButtonStyleProps & { variants: Partial; }; export declare const buttonTheme: ButtonTheme;