import { FlagsConfig, SfdxCommand } from '@salesforce/command';
export interface OrgShapeDeleteResult {
    orgId: string;
    shapeIds: string[];
}
export declare class OrgShapeDeleteCommand extends SfdxCommand {
    static readonly description: string;
    static readonly examples: string[];
    static readonly requiresUsername = true;
    static readonly flagsConfig: FlagsConfig;
    run(): Promise<OrgShapeDeleteResult>;
}
