import * as z from "zod/v3";
export type GetWorkspaceDocumentsRequest = {
    /**
     * The ID of the account
     */
    accountId: string;
    /**
     * The ID of the workspace
     */
    workspaceId: string;
    /**
     * Number of documents to return. Defaults to the maximum which is 100
     */
    count?: number | undefined;
    /**
     * Position of the first item in the total results. Defaults to 0
     */
    startPosition?: number | undefined;
    /**
     * Filter documents where Name contains the filter. Defaults to null, to not filter
     */
    nameFilter?: string | undefined;
};
/** @internal */
export type GetWorkspaceDocumentsRequest$Outbound = {
    accountId: string;
    workspaceId: string;
    count?: number | undefined;
    start_position?: number | undefined;
    name_filter?: string | undefined;
};
/** @internal */
export declare const GetWorkspaceDocumentsRequest$outboundSchema: z.ZodType<GetWorkspaceDocumentsRequest$Outbound, z.ZodTypeDef, GetWorkspaceDocumentsRequest>;
export declare function getWorkspaceDocumentsRequestToJSON(getWorkspaceDocumentsRequest: GetWorkspaceDocumentsRequest): string;
//# sourceMappingURL=getworkspacedocuments.d.ts.map