import type { GaslightConfig, GaslightFileSystem } from "./types.js"; export declare const GASLIGHT_CONFIG_EXAMPLE: string; export interface ParseGaslightConfigOptions { rejectExtraKeys?: boolean; } export declare function parseGaslightConfig(content: string, configPath: string, options?: ParseGaslightConfigOptions): Omit; export declare function loadGaslightConfig(cwd: string, homeDir: string, fs?: GaslightFileSystem, configPath?: string): Promise;