///
import type { RestPageResponseInfo } from '@sinoui/use-rest-page-api';
import { FormState } from '@sinoui/rx-form-state';
export interface UserRoleListContextProps {
/**
* 列表数据源
*/
dataSource: RestPageResponseInfo;
/**
* 查询区域formState
*/
searchConditionsForm: FormState;
}
declare const UserRoleListContext: import("react").Context;
export default UserRoleListContext;