declare const inputValidator: ({ input, allowEmpty, allowSpaces, isDestination, }: { input: string; allowEmpty?: boolean; allowSpaces?: boolean; isDestination?: boolean; }) => boolean | string; declare const stringLengthValidator: (input: string) => boolean | string; declare const enumValuesValidator: (input: string) => boolean | string; declare const checkboxValidator: ({ options, isOne, }: { options: string[]; isOne?: boolean; }) => boolean | string; declare const tableNamesValidator: (tables: string) => true | "You must enter the names of your tables!" | "You must have the dash symbol: -" | "You must not use any space"; export { inputValidator, stringLengthValidator, checkboxValidator, tableNamesValidator, enumValuesValidator, };