export interface OrgShapeListResult {
    orgId: string;
    username: string;
    alias?: string;
    shapeId: string;
    status: string;
    createdBy: string;
    createdDate: string;
}
export declare const getAllOrgShapesFromAuthenticatedOrgs: () => Promise<OrgShapeListResult[]>;
