import React from "react"; export interface ListProps { /** * Define o estilo do componente, standard ou inverse. */ type?: "standard" | "inverse"; /** * Define um array de opções da lista, com a opção no seguinte formato: * * { * label: string; * selected?: boolean; * value: number; * dataCollect?: string | null; * dataCollectInfo?: string | null; * dataQA?: string | null; * dataTestId?: string | null; * } */ options: Array