@progress/kendo-vue-layout
Version:
63 lines (62 loc) • 1.86 kB
TypeScript
/**
* @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';
/**
* @hidden
*/
export interface AppBarComputed {
[key: string]: any;
wrapperClass: object;
}
/**
* @hidden
*/
declare const AppBar: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
id: PropType<string>;
themeColor: {
type: PropType<string>;
default: string;
validator: (value: string) => boolean;
};
position: {
type: PropType<string>;
default: string;
validator: (value: string) => any;
};
positionMode: {
type: PropType<string>;
default: string;
validator: (value: string) => any;
};
}>, {}, {}, {
wrapperClass(): AppBarComputed['wrapperClass'];
}, {
focus(): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
id: PropType<string>;
themeColor: {
type: PropType<string>;
default: string;
validator: (value: string) => boolean;
};
position: {
type: PropType<string>;
default: string;
validator: (value: string) => any;
};
positionMode: {
type: PropType<string>;
default: string;
validator: (value: string) => any;
};
}>> & Readonly<{}>, {
themeColor: string;
position: string;
positionMode: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { AppBar };