import { ReactNode } from "react"; interface IProps { icon: ReactNode; onClick: () => void; isSquare?: boolean; small?: boolean; tooltip?: string; disabled?: boolean; } export declare const IconButton: ({ icon, small, onClick, isSquare, tooltip, disabled }: IProps) => JSX.Element; export {};