import type { ExtractPropTypes, StyleValue } from 'vue'; import type Scrollbar from './scrollbar.vue'; export declare const scrollbarProps: { readonly height: import("vuesax-plus/es/utils").VsPropFinalized; readonly maxHeight: import("vuesax-plus/es/utils").VsPropFinalized; readonly native: import("vuesax-plus/es/utils").VsPropFinalized; readonly wrapStyle: import("vuesax-plus/es/utils").VsPropFinalized<(new (...args: any[]) => StyleValue & {}) | (() => StyleValue) | ((new (...args: any[]) => StyleValue & {}) | (() => StyleValue))[], unknown, unknown, "", boolean>; readonly wrapClass: import("vuesax-plus/es/utils").VsPropFinalized; readonly viewClass: import("vuesax-plus/es/utils").VsPropFinalized; readonly viewStyle: import("vuesax-plus/es/utils").VsPropFinalized; readonly noresize: BooleanConstructor; readonly tag: import("vuesax-plus/es/utils").VsPropFinalized; readonly always: BooleanConstructor; readonly minSize: import("vuesax-plus/es/utils").VsPropFinalized; }; export declare type ScrollbarProps = ExtractPropTypes; export declare const scrollbarEmits: { scroll: ({ scrollTop, scrollLeft, }: { scrollTop: number; scrollLeft: number; }) => boolean; }; export declare type ScrollbarEmits = typeof scrollbarEmits; export declare type ScrollbarInstance = InstanceType;