/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { PropType } from 'vue';
/**
 * Represents the GridToolbar component.
 *
 */
declare const GridToolbar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    size: {
        type: PropType<string>;
        validator: (value: string) => boolean;
    };
}>, {}, {}, {
    wrapperClass(): {
        [x: string]: any;
        'k-toolbar': boolean;
        'k-grid-toolbar': boolean;
        'k-toolbar-solid': boolean;
    };
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    size: {
        type: PropType<string>;
        validator: (value: string) => boolean;
    };
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { GridToolbar };
