import { CommonStateProps } from "./common";
import { LensState } from "@focuson/state";
import { PageMode } from "@focuson/utils";
export interface SearchListItemsCDProps<S, T, Context> extends CommonStateProps<S, T, Context> {
    title: string;
    children?: ({ state, mode }: {
        state: LensState<S, T[], Context>;
        mode: PageMode;
        id: string;
    }) => JSX.Element;
}
