declare const mapping: {
    attribute: string;
    schema: string;
}[];
type attributes = (typeof mapping)[number]['attribute'];
type schemas = (typeof mapping)[number]['schema'];
declare const _default: {
    map: (claims: Record<attributes | schemas, unknown>) => {
        raw: Record<string, unknown>;
    };
};
export default _default;
