import type { ConfigValue } from '@quonfig/node'; import { ConfigValueType } from '@quonfig/node'; type ConfigValueWithConfigValueType = [ConfigValue, ConfigValueType]; export declare const TYPE_MAPPING: Record; export declare const coerceIntoType: (type: string, value: string) => ConfigValueWithConfigValueType | undefined; export declare const coerceBool: (value: string) => boolean; export {};