import { BasicPalette } from '../theme/theme.types'; export default function useTheme(): { applyEnvironmentTheme: (themeFetcher?: () => Promise<{ primary: string | null | undefined; }>) => Promise; updateTheme: (updatedTheme: Partial) => void; updatePrimaryColor: (color?: string) => void; };