export interface IGetResponse {
    data: {
        id: number;
        descricao: string;
    }[];
}
