interface NoCustomerProfileErrorProps { heading?: string; description?: string; } declare const NoCustomerProfileError: { ({ heading, description }: NoCustomerProfileErrorProps): JSX.Element; displayName: string; defaultProps: { heading: string; description: string; }; }; export { NoCustomerProfileError, NoCustomerProfileErrorProps };