import { FunctionComponent } from 'react';
export type BaseRequestOptionsPropsType = {
    invokeAction: string;
    getLocalizationAction?: string;
    host: string;
};
declare const BaseRequestOptions: FunctionComponent<BaseRequestOptionsPropsType>;
export default BaseRequestOptions;
