import { JSX } from 'react'; import { ButtonStyle, buttonStyle } from '../theme/button.css'; type buttonStyle = ButtonStyle & Record; export interface ButtonProps extends React.ButtonHTMLAttributes, buttonStyle { header: string; fullWidth?: boolean; className?: string; } export declare const Button: ({ header: title, size, variant, fullWidth, className, ...props }: ButtonProps) => JSX.Element; export {}; //# sourceMappingURL=button.d.ts.map