export declare const AmisCopyPrePlanDialog: ({ year, month }: { year: any; month: any; }) => { label: string; type: string; actionType: string; dialog: { title: string; body: ({ type: string; tpl: string; className: string; label?: undefined; mode?: undefined; name?: undefined; required?: undefined; options?: undefined; } | { type: string; label: string; mode: string; name: string; className: string; required: boolean; options: { label: string; value: string; }[]; tpl?: undefined; })[]; actions: { type: string; level: string; actionType: string; label: string; onEvent: { click: { actions: { actionType: string; args: { msgType: string; msg: string; position: string; }; }[]; }; }; }[]; }; };