export declare const defaultConfigFileName = "iam-collect.jsonc"; /** * Get the full path to the config file. * * @returns The full path to the config file. */ export declare function fullDefaultConfigPath(): string; /** * * @returns Whether the default config file exists */ export declare function defaultConfigExists(): boolean; type ConfigType = 'sqlite' | 'file'; export type DefaultConfigOptions = { type?: ConfigType; }; export declare function getDefaultConfig(options: DefaultConfigOptions): Promise; export {}; //# sourceMappingURL=defaultConfig.d.ts.map