import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { ListComponent } from "../../interfaces/enum/ListComponent"; export interface ListSeparatorInterfaceProps extends PropsInterface { component?: ListComponent; list: any[]; data: (item: any, index: any) => any; variant?: ListSeparatorInterfacePropsVariant; zebra?: boolean; default?: boolean; separator?: boolean; } export declare type ListSeparatorInterfacePropsVariant = "inline" | "vertical"; export declare class ListSeparator extends PureComponent { constructor(props: any); render(): JSX.Element; }