import * as z from "zod/v3";
export type DeleteWorkspaceDocumentRequest = {
    /**
     * The ID of the account
     */
    accountId: string;
    /**
     * The ID of the workspace
     */
    workspaceId: string;
    /**
     * The ID of the document
     */
    documentId: string;
};
/** @internal */
export type DeleteWorkspaceDocumentRequest$Outbound = {
    accountId: string;
    workspaceId: string;
    documentId: string;
};
/** @internal */
export declare const DeleteWorkspaceDocumentRequest$outboundSchema: z.ZodType<DeleteWorkspaceDocumentRequest$Outbound, z.ZodTypeDef, DeleteWorkspaceDocumentRequest>;
export declare function deleteWorkspaceDocumentRequestToJSON(deleteWorkspaceDocumentRequest: DeleteWorkspaceDocumentRequest): string;
//# sourceMappingURL=deleteworkspacedocument.d.ts.map