import { type AddressFormState, type BrazilianState } from "./AddressPage.types"; export type GoogleAddressComponent = { long_name: string; short_name: string; types: string[]; }; export type GooglePlaceDetails = { address_components?: GoogleAddressComponent[]; formatted_address?: string; }; export declare const normalizeState: (state?: string) => BrazilianState | undefined; export declare const normalizeZipCode: (zipCode?: string) => string; export declare const mapGooglePlaceToAddressForm: (place: GooglePlaceDetails) => Partial;