import { ProviderSourceConfig, runTimeType } from '../../../types'; import { SyncAdaptor } from '../adaptors/sync'; interface CookieConfig extends ProviderSourceConfig { config: string[]; } export declare class CookieAdaptor extends SyncAdaptor { exec(config: string[], provider: CookieConfig, runTime: runTimeType): {}; } export {};