export declare const SHEETS_PIVOT_PLUGIN_CONFIG_KEY = "sheets-pivot.config";
export declare const configSymbol: unique symbol;
export interface IUniverSheetsPivotConfig {
    notExecuteFormula?: boolean;
    defaultOverride?: boolean;
    /**
     * Define the maximum number of items that can be displayed in a single pivot table field. The default value is 1000.
     */
    maxLimitItemCount?: number;
}
export declare const defaultPluginConfig: IUniverSheetsPivotConfig;
