devexpress-reporting-react
Version:
DevExpress Reporting React provides the capability to develop a reporting application to create and customize reports.
28 lines (27 loc) • 804 B
TypeScript
import React, { FC } from 'react';
export declare const validChildComponents: {
progressbarSettings: {
component: React.FunctionComponent<{
position?: string;
keepOnVisibleArea?: boolean;
}>;
};
exportSettings: {
component: React.FunctionComponent<{
useSameTab?: boolean;
useAsynchronousExport?: boolean;
showPrintNotificationDialog?: boolean;
}>;
};
searchSettings: {
component: React.FunctionComponent<{
useAsyncSearch?: boolean;
searchEnabled?: boolean;
}>;
};
};
type PreviewSettingsPropsType = {
children: React.ReactNode | React.ReactNode[];
};
declare const PreviewSettings: FC<PreviewSettingsPropsType>;
export default PreviewSettings;