UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

16 lines (15 loc) 721 B
import React from 'react'; import { Props as StringFieldProps } from '../String'; import type { AutocompleteAllProps } from '../../../../components/autocomplete/Autocomplete'; import { ToCamelCase } from '../../../../shared/helpers/withCamelCaseProps'; export type Props = StringFieldProps & { element?: React.ElementType<Props>; autocompleteProps?: ToCamelCase<AutocompleteAllProps>; }; declare function Address(props: Props): import("react/jsx-runtime").JSX.Element; declare namespace Address { var _supportsSpacingProps: boolean; var Postal: (props: Props) => import("react/jsx-runtime").JSX.Element; var Street: (props: Props) => import("react/jsx-runtime").JSX.Element; } export default Address;