import { SfdxCommand } from '@salesforce/command';
export interface ShapeCreateResult {
    shapeId: string;
    shapeFile: string;
    success: boolean;
    errors: [];
}
export declare class OrgShapeCreateCommand extends SfdxCommand {
    static readonly description: string;
    static readonly examples: string[];
    static readonly requiresUsername = true;
    static readonly varargs = true;
    run(): Promise<ShapeCreateResult>;
}
