export interface Input {
    name: string;
    value: boolean | string | string[];
    options?: any;
}
