import type { LC } from '@use-gpu/live'; import type { ExtendedPassFlags, RenderComponents, VirtualDraw } from './types.d.cts'; type Variants = LC | LC[] | null | undefined; export declare const makeGetVariants: (components: RenderComponents, flags: ExtendedPassFlags) => (virtual: VirtualDraw, hovered: boolean) => Variants; export declare const useMakeUseVariants: (components: RenderComponents, flags: ExtendedPassFlags) => (virtual: VirtualDraw, hovered: boolean) => Variants; export {};