import { type ReactNode } from 'react'; import { View, type ViewProps } from 'react-native'; import { type TextProps } from '../Text'; export interface DividerProps extends ViewProps { className?: string; /** Renders a vertical divider instead of the default horizontal orientation. */ vertical?: boolean; children?: ReactNode; } export interface DividerLabelProps extends TextProps { asChild?: boolean; className?: string; } declare const DividerRoot: import("react").ForwardRefExoticComponent>; declare const DividerLabel: import("react").ForwardRefExoticComponent>; type DividerCompoundComponent = typeof DividerRoot & { Label: typeof DividerLabel; }; export declare const Divider: DividerCompoundComponent; export {}; //# sourceMappingURL=index.d.ts.map