7 lines
354 B
TypeScript
7 lines
354 B
TypeScript
/// <reference types="react" />
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
import { RowWithActions, WebComponentProps } from "oak-frontend-base";
|
|
export default function render(props: WebComponentProps<EntityDict, 'withdrawChannel', false, {
|
|
channel: RowWithActions<EntityDict, 'withdrawChannel'>;
|
|
}>): import("react").JSX.Element | null;
|