import { IHtmlDivProps } from "../../html/types";
import { IVariantPropsDivider } from "../../variants/divider";
/**
* The `Divider` component renders a horizontal separation line on the page.
* It can be customized with styles and className
*
* @component Divider
*
* @example
* Here’s an example of how to use the `Divider` component:
*
* ```tsx
* import {View} from "react-native";
* import Divider from '@resk/nativewind'; // Adjust the import path as necessary
* const MyComponent = () => {
* return (
*
*
*
*
* );
* };
*
* export default MyComponent;
* ```
*
* @note
* The color of the `Divider` is determined by the baground color from the class name
* in your application for the color to be applied.
*/
export declare function Divider({ disabled, variant, className, ...rest }: IHtmlDivProps & {
variant?: IVariantPropsDivider;
}): import("react/jsx-runtime").JSX.Element;
export declare namespace Divider {
var displayName: string;
}