import { ReactElement, PropsWithChildren } from 'react';
import { StyleProp, ViewStyle } from 'react-native';
export declare type ListProps = PropsWithChildren<{
    inset?: boolean;
    sideBar?: boolean;
    hideDividers?: boolean;
    header?: string | ReactElement<any>;
    footer?: string | ReactElement<any>;
    backgroundColor?: string;
    containerBackgroundColor?: string;
    dividerColor?: string;
    headerColor?: string;
    footerColor?: string;
    style?: StyleProp<ViewStyle>;
}>;
export declare const List: ({ inset, sideBar, hideDividers, header, footer, backgroundColor, containerBackgroundColor, headerColor, footerColor, dividerColor, style, children, }: ListProps) => JSX.Element;
