export type HrProps = Omit, "children"> & { /** * The variant of the horizontal rule. * @default solid */ variant?: "solid" | "dashed"; }; /** * This component wraps an [`
`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr) HTML element. * All the props are directly sent to the horizontal rule element. */ export declare const Hr: React.FC;