import { PropsWithChildren } from 'react'; type IconButtonProps = PropsWithChildren<{ handleClick: () => void; className?: string; }>; export declare function IconButton({ children, handleClick, className, }: IconButtonProps): import("react/jsx-runtime").JSX.Element; export {};