/** * Makes sure that `@context` always contain at least "https://www.w3.org/2018/credentials/v1" * * {@link https://www.w3.org/TR/2019/REC-vc-data-model-20191119/#contexts | Contexts} * * @param inputContext - The `@context` property, as provided by the client * @returns An array of strings with "https://www.w3.org/2018/credentials/v1" as first item */ export declare function formatContext(inputContext: string[] | undefined): string[]; export default formatContext;