import type { IntlayerConfig } from '../../client';
export type ReplaceValue<T> = {
    [K in keyof T]: string | number | boolean | undefined;
};
export type IntlayerConfigEnvVariable = {
    [K in keyof IntlayerConfig]: ReplaceValue<IntlayerConfig[K]>;
};
//# sourceMappingURL=types.d.ts.map