import { CheckRulesOutput } from '../interfaces/check-rules.output'; import { TicketDto } from '../interfaces/ticket/ticket.dto'; import { EnabledTicket } from '../rules/ticket/enabled-ticket'; export declare function isValidWithErrors(ticket: TicketDto): CheckRulesOutput; export declare function canValidate(ticket: TicketDto): boolean; export declare function canValidateWithErrors(ticket: TicketDto, withLogs?: boolean): string[]; export declare function checkRulesWithErrors(ticket: TicketDto, rules: (typeof EnabledTicket)[], withLogs?: boolean): CheckRulesOutput; //# sourceMappingURL=validate.d.ts.map