import React from 'react'; import { WebComponentProps } from 'oak-frontend-base'; import { EntityDict } from '../../../oak-app-domain'; import { SysAccountOperType } from '../../../types/sysAccountOper'; type SAOType = SysAccountOperType | 'all'; export default function Render(props: WebComponentProps; month?: Date; monthStr: string; type: SAOType; typesOptions: { label: string; value: SAOType; }[]; }, { setMonth: (month?: Date) => void; setType: (type: SAOType) => void; }>): React.JSX.Element; export {};