import { Config } from 'relaycode-core'; declare const findConfigPath: (cwd?: string) => Promise; declare const findConfig: (cwd?: string) => Promise; declare const loadConfigOrExit: (cwd?: string) => Promise; declare const getStateDirectory: (cwd: string) => string; declare const ensureStateDirExists: (cwd?: string) => Promise; declare const createConfig: (projectId: string, cwd?: string) => Promise; declare const getProjectId: (cwd?: string) => Promise; export { createConfig, ensureStateDirExists, findConfig, findConfigPath, getProjectId, getStateDirectory, loadConfigOrExit };