export declare type SpreadsheetSettingOptions = {
    contextMenuRowLabel?: {
        INSERT_ROW_ABOVE?: string;
        INSERT_ROW_BELOW?: string;
        DELETE_ROW?: string;
    };
    contextMenuColLabel?: {
        INSERT_COLUMN_LEFT?: string;
        INSERT_COLUMN_RIGHT?: string;
        DELETE_COLUMN?: string;
    };
};
