import React from "react";
export interface ListItemProps {
    Icon?: null | React.ElementType;
    IconRight?: null | React.ElementType;
    notifications?: number;
    selected?: boolean;
    subItem?: boolean;
    text: string;
    onClick?(): void;
}
export declare const ListItem: ({ onClick, subItem, selected, ...props }: ListItemProps) => JSX.Element;
export interface ExpandableListItemProps {
    children: any;
    Icon?: null | React.ElementType;
    openByDefault?: boolean;
    text: string;
}
export declare const ExpandableListItem: (props: any) => JSX.Element;
export interface TransformDrawerProps {
    children: any;
    HeaderIcon?: null | React.ElementType;
    headerText: string;
}
declare const _default: ({ headerText, HeaderIcon, children }: TransformDrawerProps) => JSX.Element;
export default _default;
