export interface IFindTypesParams { idContato: number; } export interface IFindTypesResponse { data: { id: number; descricao: string; }[]; }