import type { components } from '@feedmepos/ui-library'; import type { ValidationRule } from 'node_modules/@feedmepos/ui-library/dist/composables/useValidation'; type FmTextFieldProps = (typeof components)['FmTextField']['__defaults'] & {}; export interface FmCoordinateInputProps { address?: FdoAddress & { formatted: string; }; modelValue?: [number, number]; dialogTitle?: string; label?: string; helperText?: string; helperState?: FmTextFieldProps['helperState']; labelMark?: FmTextFieldProps['labelMark']; labelInfo?: string; placeholder?: string; disabled?: boolean; rules?: ValidationRule[]; } export interface MapCoordinate { lat: number; lng: number; } export {};