/** * Video upload limits */ export declare const VideoUploadLimitsType: import("../utils/schema").SchemaObjectType<{ /** * Length */ length: { default: true; type: "Int"; }; /** * Size */ size: { default: true; type: "Int"; }; }>;