export interface Config {
    shopId: string;
    secretPhrase: string;
}
export declare type ConfigGetter = () => Config;
