import { CLI, ParamsFrom } from "actionhero"; export declare class SyncCLI extends CLI { name: string; description: string; inputs: { readonly property: { readonly description: "Choose the name of the Property to find the GrouparooRecord by (i.e.: email_address)"; readonly letter: "p"; }; readonly "no-export": { readonly description: "Skip exporting the record"; readonly letter: "n"; readonly flag: true; }; }; example: string; constructor(); preInitialize: () => void; run({ params, }: { params: Partial & { export?: boolean; recordProperty?: string; json?: string; _arguments: string[]; }>; }): Promise; }