import { ShareButtonFuncArgs } from './share.models';
/** Returns a valid URL or falls back to current URL */
export declare function getValidUrl(url: string): string;
export declare function printPage(): void;
export declare function copyToClipboard({ params, data, clipboard, uiState }: ShareButtonFuncArgs<CopyToClipboardDataArgs>): void;
interface CopyToClipboardDataArgs {
    delay: number;
    text: string;
    icon: any;
    successText: string;
    successIcon: any;
}
export {};
