import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import { DividerProps } from './interfaces'; type InternalDividerProps = DividerProps & InternalBaseComponentProps; export default function InternalDivider({ orientation, children, nativeAttributes, __internalRootRef, ...rest }: InternalDividerProps): JSX.Element; export {};