import type { ChildrenFunction } from '../../typings/index'; import { type JSX } from 'react'; interface Props extends Omit { /** * Function allow you to customize the component */ children?: ChildrenFunction>; /** * Label to show. Default: 'No addresses available.' */ emptyText?: string; } /** * The AddressesEmpty component is aimed to display a message in case no customer address is available, otherwise it won't show. * * It accepts an optional `emptyText` prop to customize default message. * * It is also possible to wrap inside this component any children elements to create a completely custom experience regarding the absence of customer addresses. * * * It must to be used inside the `` component. * * */ export declare function AddressesEmpty(props: Props): JSX.Element | null; export default AddressesEmpty;