import { Procedure, Venue } from '../../internal'; import { ModifyVenueParams } from '../../types'; import { BatchTransactionSpec, ProcedureAuthorization } from '../../types/internal'; /** * @hidden */ export type Params = { venue: Venue; } & ModifyVenueParams; /** * @hidden */ export declare function prepareModifyVenue(this: Procedure, args: Params): Promise>; /** * @hidden */ export declare function getAuthorization(this: Procedure, { venue: { id: venueId }, description, type }: Params): ProcedureAuthorization; /** * @hidden */ export declare const modifyVenue: () => Procedure; //# sourceMappingURL=modifyVenue.d.ts.map