/** Client side validation function */
export interface ValidationFunction<TValue> {
    (value: TValue): string | undefined;
}
