import * as React from 'react'; import '@vtmn/css-divider/dist/index-with-vars.css'; import { VtmnDividerOrientation, VtmnDividerTextPosition } from './types'; export interface VtmnDividerProps extends React.ComponentPropsWithoutRef<'div'> { /** * The orientation of the divider. * @defaultValue 'horizontal' */ orientation?: VtmnDividerOrientation; /** * The position of the text inside the divider. * @defaultValue 'start' */ textPosition?: VtmnDividerTextPosition; /** * The id of divider label. * @defaultValue undefined */ labelId?: string; } export declare const VtmnDivider: ({ orientation, textPosition, children, className, labelId, ...props }: VtmnDividerProps) => JSX.Element; declare const MemoVtmnDivider: React.MemoExoticComponent<({ orientation, textPosition, children, className, labelId, ...props }: VtmnDividerProps) => JSX.Element>; export default MemoVtmnDivider;