import type { Author } from './types'; interface Props { /** Authors to display, in order. */ authors: Author[]; /** ID on the containing block. */ id?: string; /** Extra classes on the containing block. */ class?: string; } /** * A bordered box of one or more author bios (rendered as Bio cards), echoing the contributor box on Reuters.com stories. * * [Read the docs.](https://reuters-graphics.github.io/graphics-components/?path=/docs/components-page-furniture-biobox--docs) */ declare const BioBox: import("svelte").Component; type BioBox = ReturnType; export default BioBox;