type RedirectFormat = 'netlify.toml' | '_redirects' | 'json';
declare const generateRedirects: (path: string, format: RedirectFormat) => string;

type RunCliArgs = {
    cwd?: string;
    format?: RedirectFormat;
    path?: string;
    output?: string;
};
declare function runCli(args: RunCliArgs): void;

export { type RedirectFormat, runCli as default, generateRedirects };
