import React, { ReactElement } from 'react';
import { ListProps } from '../List';
declare type ListStyleProviderProps = {
    dividerColor: string;
    sideBar: boolean;
    children: ReactElement<ListProps>;
};
export declare const ListStyleContext: React.Context<any>;
export declare const ListStyleProvider: ({ children, dividerColor, sideBar, }: ListStyleProviderProps) => JSX.Element;
export {};
