interface GridToolbarExportProps {
    csvOptions?: GridCsvExportOptions & GridExportDisplayOptions;
    printOptions?: GridPrintExportOptions & GridExportDisplayOptions;
    slotProps?: {
        button?: Partial<ButtonProps>;
        tooltip?: Partial<TooltipProps>;
    };
    [x: `data-${string}`]: string;
}

Hierarchy (view full)

Indexable

  • [x: `data-${string}`]: string

Properties

slotProps?: {
    button?: Partial<ButtonProps>;
    tooltip?: Partial<TooltipProps>;
}

The props used for each slot inside.

{}