import { PropsWithChildren } from "react"; interface IProps extends PropsWithChildren { hidden?: boolean; text: string; icon?: boolean; className?: string; element?: ElementComponent; style?: any; onClick?: (success: boolean) => void; } /** * Button witch let the user copy given text */ export declare function CopyTextButton(props: IProps): JSX.Element; export {};