import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
/** Renders an HTML `<b>` element. Accepts optional attributes and child content. */
declare const B: import("svelte").Component<Props, {}, "">;
type B = ReturnType<typeof B>;
export default B;
