export interface Props { text: string; hideAddIcon?: boolean; handleClick: () => void; } export declare const ButtonWithRoundAddIcon: ({ text, handleClick, hideAddIcon, }: Props) => import("react/jsx-runtime").JSX.Element;