declare const useZipCode: () => { data: Payload | null; setCodeCountry: (countryCode: string, code?: string | undefined) => void; }; interface Place { placeName: string; longitude: string; postCode: string; latitude: string; } export interface Payload { countryAbbreviation: string; places: Place[]; country: string; placeName: string; state: string; stateAbbreviation: string; } export default useZipCode;