import { IState, IStateUniqueKeys } from '../interfaces'; export declare const getAllStates: () => IState[]; export declare const getStateByKeyValue: (key: IStateUniqueKeys, value: string) => IState | null; export declare const getStatesByCountry: (countryCode: string) => IState[] | null;