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