@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
9 lines (8 loc) • 402 B
TypeScript
import * as React from 'react';
import { AdaptableApi } from '../../../../types';
import { type NewDropdownButtonProps } from '../../../components/DropdownButton';
export interface ExportDropdownProps extends Omit<NewDropdownButtonProps, 'items'> {
api: AdaptableApi;
type: 'adaptableState' | 'initialState';
}
export declare const ExportDropdown: React.FunctionComponent<ExportDropdownProps>;