import { BoxProps, ChakraComponent } from '@chakra-ui/react'; import { default as React } from 'react'; export interface HorizontalRuleProps extends BoxProps { /** Optional alignment value to align the horizontal rule to one side or the * other when the width is less than 100%. If omitted, the horizontal rule * will have a default center alignment. */ align?: "left" | "right"; } export declare const HorizontalRule: ChakraComponent & React.RefAttributes>, React.PropsWithChildren>; export default HorizontalRule;