import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type GetWorkspaceDocumentResponse = {
    /**
     * The ID of the workspace
     */
    workspaceId?: string | null | undefined;
    /**
     * The ID of the document
     */
    documentId: string;
    /**
     * The name of the document
     */
    name: string;
    /**
     * The ID of the owner of the document
     */
    ownerId?: string | null | undefined;
    /**
     * The size of the document in bytes
     */
    size?: number | null | undefined;
    /**
     * The date the document was created
     */
    createdDate?: Date | null | undefined;
    /**
     * The document content type
     */
    contentType?: string | null | undefined;
};
/** @internal */
export declare const GetWorkspaceDocumentResponse$inboundSchema: z.ZodType<GetWorkspaceDocumentResponse, z.ZodTypeDef, unknown>;
export declare function getWorkspaceDocumentResponseFromJSON(jsonString: string): SafeParseResult<GetWorkspaceDocumentResponse, SDKValidationError>;
//# sourceMappingURL=getworkspacedocumentresponse.d.ts.map