import { CustomerProfileComponentSchema } from '@open-formulieren/types'; import { DigitalAddressesResponseBody } from './types'; interface UseDigitalAddresses { digitalAddresses: DigitalAddressesResponseBody | undefined; loading: boolean; } export declare const useDigitalAddresses: (profileComponentName: string, digitalAddressTypes: CustomerProfileComponentSchema["digitalAddressTypes"]) => UseDigitalAddresses; export declare const useCustomerProfileComponentParameters: () => { fetchDigitalAddresses: (profileComponentName: string) => Promise; portalUrl: string; updatePreferencesModalEnabled: boolean; }; export {};