export declare const fileWebOutput = "/**\n * This file was generated from MyWidget.xml\n * WARNING: All changes made to this file will be overwritten\n * @author Mendix Widgets Framework Team\n */\nimport { ActionValue, DynamicValue, EditableValue, FileValue } from \"mendix\";\n\nexport interface MyWidgetContainerProps {\n    name: string;\n    tabIndex?: number;\n    id: string;\n    file: DynamicValue<FileValue>;\n    file2?: DynamicValue<FileValue>;\n    description: EditableValue<string>;\n    action?: ActionValue;\n}\n\nexport interface MyWidgetPreviewProps {\n    readOnly: boolean;\n    renderMode: \"design\" | \"xray\" | \"structure\";\n    translate: (text: string) => string;\n    file: string;\n    file2: string;\n    description: string;\n    action: {} | null;\n}\n";
export declare const fileNativeOutput = "export interface MyWidgetProps<Style> {\n    name: string;\n    style: Style[];\n    file: DynamicValue<FileValue>;\n    file2?: DynamicValue<FileValue>;\n    description: EditableValue<string>;\n    action?: ActionValue;\n}";
