import { Pressable } from 'react-native'; import { type VariantProps } from 'class-variance-authority'; declare const buttonVariants: (props?: ({ variant?: "default" | "link" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined; size?: "default" | "sm" | "lg" | "icon" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare const buttonTextVariants: (props?: ({ variant?: "default" | "link" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined; size?: "default" | "sm" | "lg" | "icon" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type ButtonProps = React.ComponentProps & React.RefAttributes & VariantProps; declare function Button({ className, variant, size, ...props }: ButtonProps): import("react/jsx-runtime").JSX.Element; export { Button, buttonTextVariants, buttonVariants }; export type { ButtonProps }; //# sourceMappingURL=button.d.ts.map