import yargs from 'yargs'; declare const args: { readonly key: { readonly type: "string"; readonly describe: "Notion Key"; readonly demandOption: false; }; readonly dbid: { readonly type: "string"; readonly describe: "Notion database ID"; readonly demandOption: false; }; readonly userName: { readonly type: "string"; readonly describe: "Notion user name"; readonly demandOption: false; }; }; type argsT = yargs.Arguments>; export declare const command = "auth"; export declare const description = "Add your notion key and database id to enable Notion API to fetch and update issues on Notion Database."; export declare const builder: { readonly key: { readonly type: "string"; readonly describe: "Notion Key"; readonly demandOption: false; }; readonly dbid: { readonly type: "string"; readonly describe: "Notion database ID"; readonly demandOption: false; }; readonly userName: { readonly type: "string"; readonly describe: "Notion user name"; readonly demandOption: false; }; }; export declare const canonical = "auth"; export declare const handler: (argv: argsT) => Promise; export {};