import { FunctionComponent } from 'react';
export type RequestOptionsPropsType = {
    getDesignerModelAction: string;
    getLocalizationAction?: string;
    host: string;
};
declare const RequestOptions: FunctionComponent<RequestOptionsPropsType>;
export default RequestOptions;
