/** * * * Simple wrapper DTO containing a single boolean response value. */ export declare class BooleanResponse { /** * * The boolean result of the operation. */ response: boolean; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): BooleanResponse; }