export interface IValidateHashParams {
    hash: string;
}
export interface IValidateHashResponse {
    data: {
        valido?: boolean;
    }[];
}
