import { type ComponentType } from "react"; import { type IInsightWidget } from "@gooddata/sdk-model"; /** * @alpha */ export interface IShowAsTableButtonProps { widget: IInsightWidget; isWidgetAsTable: boolean; onClick: () => void; } /** * @alpha */ export type CustomShowAsTableButtonComponent = ComponentType; //# sourceMappingURL=types.d.ts.map