import type { CSSProperties, Ref } from 'vue'; export interface AppProviderContextProps { labelStyle: Ref; contentStyle: Ref; } export declare function createProviderContext(context: AppProviderContextProps): void; export declare function useProviderContext(): AppProviderContextProps;