import type { Author } from './types'; interface Props extends Author { /** Extra class on the root element. */ class?: string; } /** One author's card — avatar (falling back to the Kinesis logo), name, title, social links and bio. Used by BioBox, but works standalone. */ declare const Bio: import("svelte").Component; type Bio = ReturnType; export default Bio;