import React from "react"; export interface ListBoxProps { header: JSX.Element; data: any[]; renderItem: (datum: any) => JSX.Element; onClickItem?: (item: any) => void; onEditItem?: (item: any) => void; className?: string; } export declare const BaseListBox: React.FC; export declare const ListBox: import("styled-components").StyledComponent, any, {}, never>;