import type * as yargs from "yargs"; /** * Creates the schema within postgres */ export declare class SchemaCreateCommand implements yargs.CommandModule { command: string; describe: string; builder(args: yargs.Argv): yargs.Argv<{}>; handler(_args: yargs.Arguments): Promise; }