import type { FunctionalComponent } from '../stencil-public-runtime';
import type { ContainerState, ListItem } from '../shared/types';
interface ListProps {
    loading: boolean;
    list: ListItem[];
    containerState: ContainerState;
}
export declare const List: FunctionalComponent<ListProps>;
export {};
