import { type VariantProps } from "class-variance-authority"; declare const buttonVariants: (props?: ({ variant?: "accent" | "secondary" | null | undefined; size?: "default" | "small" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type RoundButtonProps = { label?: string; icon: React.ComponentType> | React.ReactNode; } & VariantProps & Omit, "children">; export declare function RoundButton({ variant, size, label, icon: IconComponent, className, ref, ...rest }: RoundButtonProps): import("react").JSX.Element; export declare namespace RoundButton { var displayName: string; } export {}; //# sourceMappingURL=RoundButton.d.ts.map