export declare const VALID_METHODS: string[]; export declare const DEFAULT_METHOD = "GET"; export declare const MOCK_FILE_PATTERN = "mock/**/*.{js,ts}"; export interface MockConfig { method: string; path: string; handler: Function | Record; } export default function getConfigs(rootDir: string, exclude?: string[]): MockConfig[];