import * as React from 'react'; import type { DataType, EventsType } from '../../../configs/components/form-location'; import type { CommonPropsType } from '../../types'; export type FormLocationProps = CommonPropsType & DataType & { onChange: (v: DataType['value']) => void; disabled: boolean; readOnly: boolean; } & EventsType; declare const FormLocation: React.ForwardRefExoticComponent; validateStatus: "success" | "error" | "warn"; requiredMsg: string; locationRange: 0 | -1 | 100 | 500 | 2000 | 1000 | 300; customRange: number; }> & { onChange: (v: DataType['value']) => void; disabled: boolean; readOnly: boolean; } & import("type-fest").Simplify> & React.RefAttributes>; export default FormLocation;