export interface AdminProviderProps {
/** the allowed locales for the I18nProvider */
allowedLocales?: Array<string>;
/** the default locale for the I18nProvider */
defaultLocale?: string;
/**
* The set of {@link GatewayComponent} that this provider is responsible for rendering.
*/
gatewayComponents: Array<Function | object>;
/** the messages for the I18nProvider */
messages?: object;
}