import type { CSSProperties, FC, MouseEvent, PropsWithChildren, ReactElement } from 'react'; export declare type ButtonProps = PropsWithChildren<{ className?: string; disabled?: boolean; endIcon?: ReactElement; onClick?: (e: MouseEvent) => void; startIcon?: ReactElement; style?: CSSProperties; tabIndex?: number; }>; export declare const Button: FC;