import React from "react"; import { type ButtonSize } from "../styles"; export type ButtonProps = { children?: React.ReactNode; variant?: "filled" | "outlined" | "text"; disabled?: boolean; color?: "primary" | "secondary" | "text" | "error" | "neutral"; size?: ButtonSize; startIcon?: React.ReactNode; fullWidth?: boolean; className?: string; component?: C; onClick?: React.MouseEventHandler; } & React.ComponentPropsWithoutRef; export declare const Button: React.FC>;