import { ReactNode, SyntheticEvent, CSSProperties } from 'react'; type ButtonProps = { fullWidth?: boolean; variant?: 'primary' | 'inverted' | 'ghost'; onClick?: (a: SyntheticEvent) => unknown; children?: ReactNode; size?: 'small' | 'medium' | 'large'; disabled?: boolean; loading?: boolean; startAdornment?: ReactNode; endAdornment?: ReactNode; style?: CSSProperties; contentStyle?: CSSProperties; }; export default ButtonProps; //# sourceMappingURL=type.d.ts.map