import type { OASDocument } from 'oas/dist/rmoas.types';
export type AuthForHAR = Record<string, string | number | {
    user?: string;
    pass?: string;
}>;
export default function configureSecurity(apiDefinition: OASDocument, values: AuthForHAR, scheme: string): false | {
    type: "cookies" | "headers" | "queryString";
    value: {
        name: string;
        value: string;
    };
};
