export declare function JSONSchme2AMisSchema(schema: any): {
    title: any;
    type: string;
    mode: string;
    controls: {
        name: any;
        type: string;
        required: boolean;
        label: any;
        desc: any;
        value: any;
        validations: {};
    }[];
};
