import { ComputedRef, Ref } from 'vue'; import { VsComponent } from '../declaration'; export declare function useStyleSet(component: VsComponent | string, styleSet: Ref, additionalStyleSet?: Ref): { plainStyleSet: ComputedRef; computedStyleSet: ComputedRef<{ [key: string]: any; }>; };