import { ComponentPropsWithRef } from 'react'; type HTMLHRProps = ComponentPropsWithRef<'hr'>; export type HorizontalRuleProps = HTMLHRProps & { ccMargin?: string; }; /** * - Use to semantically separate content. * - Accepts a `ccMargin` prop that pulls in our spacing tokens (xxs - xxl). > `ccMargin` works like CSS shorthand. For example, if you want different margin on all sides, you can do something like `ccMargin="xxs l m xl"`. If you want to set margin on just the top and bottom, you can do `ccMargin="xxs 0"`. */ export declare function HorizontalRule({ ccMargin, ...props }: HorizontalRuleProps): import("react/jsx-runtime").JSX.Element; export default HorizontalRule;