import { Ref, ComputedRef } from 'vue'; export declare function useDark(): Ref; export interface Colors { textColor: string; backgroundColor: string; placeholderColor: string; commentColor: string; primaryColor: string; infoColor: string; successColor: string; warningColor: string; errorColor: string; } export declare const lightColors: Colors; export declare const darkColors: Colors; export declare function useColors(): ComputedRef;