export * from './common'; export * from './utils'; import * as utils from './utils'; export declare function hello(): string; declare const _default: { isLocal: boolean; getShareResult(url: string): Promise; getAccounts(url: string): Promise; encrypt(data: string, key: string): string; decrypt(encryptedData: string, key: string): string; randomHex(byteLength: number): string; formatDate(date?: Date): string; timeAgo(dateString: string): string; diffDaysHours(start: string, end: string): { days: number; hours: number; }; enableDev(boo: boolean, accounts?: AppleAccount[]): void; mockAccounts: AppleAccount[]; fingerprint(options?: { width?: number; height?: number; seedText?: string; }): Promise; $: typeof utils.$; JQueryLike: typeof utils.JQueryLike; copyText(text: string, toastText?: string | false): Promise; toast(text: string, duration?: number): void; request: import("ky").KyInstance; getSignatureHeaders: (method?: string) => Promise<{ 'x-fingerprint': string; 'x-timestamp': string; 'x-nonce': string; 'x-signature': string; }>; parseUrlParams(url: string): Record; objectToUrlParams(obj: Record): string; hello: typeof hello; }; export default _default;