/** * Copyright (c) Investec * * This source code is licensed under the MIT license found in the * LICENSE.md file in the root directory of this source tree. */ interface OutroGroup { label: string; lines?: string[]; variant?: "code"; } declare function outro(groups: OutroGroup[]): void; export { type OutroGroup, outro };