export type OFormValidation = {
    valid: boolean;
    title?: string;
    messages?: Array<string>;
};
