import { CSSProperties } from 'react'; export type Palette = { primary: string; secondary: string; error: string; }; export type ThemeProps = { palette?: Palette; }; export interface CustomPaletteTypes extends CSSProperties { '--will-primary'?: string; '--will-secondary'?: string; '--will-error'?: string; } export declare const useTheme: ({ palette }: ThemeProps) => CustomPaletteTypes;