import * as React from 'react'; interface IProps { /** @ignore */ className?: string; /** * Latitude or longitude? */ isLatitude: boolean; /** * Input name. */ name?: string; /** * Input value. */ value?: any; /** * Marks input as disabled. * @default false */ disabled?: boolean; /** * An input can show an error state. * @default false */ error?: boolean; onChange?: (value: any) => void; } declare class DmsInput extends React.Component { render: () => JSX.Element; } export { DmsInput };