export declare const SecurityParamsSchema: {
    $schema: string;
    title: string;
    description: string;
    type: string;
    additionalProperties: boolean;
    properties: {
        expiry: {
            type: string;
        };
        call: {
            $ref: string;
        };
        handle: {
            type: string;
        };
        url: {
            type: string;
        };
        maxSize: {
            type: string;
        };
        minSize: {
            type: string;
        };
        path: {
            type: string;
        };
        container: {
            type: string;
        };
    };
};
