export interface ExperimentalOptions { runCondition: boolean; checkReferrer: boolean; message: string; } export declare const UNAUTHORIZED_PARTNER_ERROR = "You are not whitelisted for experimental features"; export declare function experimental(callback: () => Promise, options: ExperimentalOptions): Promise;