import { default as React } from 'react'; import { default as ISeparatorProps } from './ISeparatorProps'; /** * A separator component that provides visual separation between elements * @param props {@link ISeparatorProps} - Props for the Separator component * @returns The rendered Separator component * * @example * ```tsx * function App() { * return ( * * ); * } * ``` * * @example * ```tsx * // Vertical separator * function App() { * return ( * * ); * } * ``` */ declare const Separator: React.FC>; export default Separator;