import { default as React } from 'react';

export type CopyCommandProps = {
    className?: string;
    copytext: string;
};
type TriggerProps = React.HTMLAttributes<HTMLButtonElement> & CopyCommandProps;
type CopyFieldTextProps = React.HTMLAttributes<HTMLParagraphElement> & CopyCommandProps;
declare const CopyTrigger: React.FC<TriggerProps>;
declare const CopyFieldText: React.FC<CopyFieldTextProps>;
export declare const CopyCommand: React.FC<CopyCommandProps> & {
    Text: typeof CopyFieldText;
    Trigger: typeof CopyTrigger;
};
export {};
//# sourceMappingURL=copy.cmd.d.ts.map