import { z } from 'zod'; import { BaseCommand } from '../base-command'; declare const flagsSchema: z.ZodObject<{ input: z.ZodOptional; separate: z.ZodDefault; include: z.ZodOptional; exclude: z.ZodOptional; userId: z.ZodOptional; projectId: z.ZodOptional; }, "strip", z.ZodTypeAny, { separate: boolean; projectId?: string | undefined; input?: string | undefined; userId?: string | undefined; exclude?: string | undefined; include?: string | undefined; }, { projectId?: string | undefined; input?: string | undefined; userId?: string | undefined; separate?: boolean | undefined; exclude?: string | undefined; include?: string | undefined; }>; export declare class ImportCredentialsCommand extends BaseCommand> { private transactionManager; run(): Promise; catch(error: Error): Promise; private reportSuccess; private storeCredential; private checkRelations; private readCredentials; private parseCredentialProperties; private warnOnUnknownProperties; private filterCredentialProperties; private isCredentialPropertyImportable; private getCredentialOwner; private credentialExists; private getProject; } export {};