@docsvision/webclient
Version:
Type definitions for DocsVision WebClient scripts and extensions.
11 lines (9 loc) • 367 B
TypeScript
/// <reference types="react" />
import { HtmlProps } from '@docsvision/web/core/component';
export interface IAgregatesApplyButtonPanelProps extends HtmlProps.div {
onApply: () => void;
visible: boolean;
buttonText: string;
disabled: boolean;
}
export declare function AggregatesApplyButtonPanel(props: IAgregatesApplyButtonPanelProps): JSX.Element;