interface Props {
    attributes?: Record<string, any>;
}
/** Renders a self-closing HTML `<br>` element. Accepts optional attributes. */
declare const Br: import("svelte").Component<Props, {}, "">;
type Br = ReturnType<typeof Br>;
export default Br;
