import type { MandatoryProps } from './utils';
export type PersonAutocompletedData = MandatoryProps & {
    id_type: string;
    id: string;
    has_submitted_info: boolean;
    quote_id?: string;
};
