import type { Color } from '@nativescript/core'; import { Ref } from 'nativescript-vue'; export type PaletteColor = { theme: T; colors: S; }; export interface UseColorPaletteOptions { /** * The initial palettes * * @default 'auto' */ palettes?: PaletteColor[]; /** * A custom handler for handle the updates. * * @default undefined */ onChanged?: (palette: PaletteColor) => void; } export declare function useColorPalette(options?: UseColorPaletteOptions): { palette: Ref, PaletteColor>; };