import React from 'react'; export type CopiedMessageProps = { /** * show the copied message component */ show?: boolean; } & React.HTMLAttributes; /** * A component to indicate when the required text has been copied */ export declare function CopiedMessage({ className, show, ...rest }: CopiedMessageProps): JSX.Element;