import React from "react";
type StateItem = {
    name: string;
    title: string;
};
type DataListStatesProps = {
    states?: StateItem[];
    activeState: string | null;
    onSelectState: (state: StateItem) => void;
};
declare const DataListStates: React.FC<DataListStatesProps>;
export default DataListStates;
