import { default as React, ReactNode } from 'react'; import { TranslationDefinition } from '../../hooks/useTranslate'; export type GrapesProviderProps = { /** * The content of the GrapesProvider */ children: ReactNode; /** * The locale for your application as BCP 47 language tag. * @see {@link https://datatracker.ietf.org/doc/html/rfc4647} * @example "en-US", "de-DE", "fr-FR" */ locale: string; /** * The definition of locales helper to translate default Grapes text */ localesDefinition: TranslationDefinition; /** * The Mapbox Access token for your application. * Required if you want to use a AutocompletePlace component */ mapboxAccessToken?: string; }; export declare const GrapesProvider: ({ children, localesDefinition, locale, mapboxAccessToken, }: GrapesProviderProps) => React.JSX.Element; //# sourceMappingURL=GrapesProvider.d.ts.map