/** @format */ import { ReactElement } from "react"; interface ButtonProps { color?: string; backgroundColor?: string; padding?: string; margin?: string; borderColor?: any; fontSize?: string; zIndex?: string; borderRadius?: string; disabled?: boolean; type?: "button" | "submit" | "reset"; width?: string; height?: string; onClick?: () => void; leftInfo?: string | number; rightInfo?: string | number; withFlashyBackground?: boolean; children?: ReactElement[] | ReactElement | string; } declare function Button({ color, backgroundColor, padding, borderColor, margin, fontSize, borderRadius, disabled, type, width, height, leftInfo, rightInfo, zIndex, onClick, children, }: ButtonProps): JSX.Element; export default Button;