import type { ArgsFromOptions, Argv } from "graphile-config/cli";
export declare function options(yargs: Argv): Argv<{
    connection: string | undefined;
} & {
    "superuser-connection": string | undefined;
} & {
    schema: string | undefined;
} & {
    watch: boolean | undefined;
} & {
    port: number | undefined;
} & {
    host: string | undefined;
} & {
    subscriptions: boolean | undefined;
} & {
    config: string | undefined;
} & {
    preset: string | undefined;
} & {
    "allow-explain": boolean | undefined;
}>;
export declare function run(args: ArgsFromOptions<typeof options>): Promise<void>;
//# sourceMappingURL=cli.d.ts.map