import { VariantProps } from 'class-variance-authority'; import type * as React from 'react'; declare const buttonVariants: (props?: ({ colorType?: "gray" | "pink" | "red" | "orange" | "yellow" | "lime" | "green" | "mint" | "skyblue" | "blue" | "indigo" | "purple" | null | undefined; purpose?: "sub" | "main" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; type ButtonProps = React.ComponentProps<'button'> & VariantProps & { asChild?: boolean; isLoading?: boolean; }; declare function Button({ className, asChild, purpose, colorType, children, disabled, isLoading, ...props }: ButtonProps): React.JSX.Element; export type { ButtonProps }; export { Button, buttonVariants }; //# sourceMappingURL=button.d.ts.map