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