import React from "react"; interface DividerProps { /** * The weight of the divider. * * @default "base" */ readonly size?: "base" | "large" | "larger" | "largest"; /** * The direction of the divider * * @default "horizontal" */ readonly direction?: "horizontal" | "vertical"; /** * Used to locate this view in end-to-end tests. */ readonly testID?: string; } export declare function Divider({ size, direction, testID, }: DividerProps): React.JSX.Element; export {};