/** Props接口 */ interface IProps { config: any; record?: any; children: any; invoiceUuidList?: string[]; } /** * 选择用途面板 */ export default function Component(props: IProps): JSX.Element; export {};