import { FlipCardPanelProps, FlipCardRef } from './types'; /** * A generic 3D animated flip-card panel. * * Consumers own the values. Use it in two ways: * - Static: pass `initialValue` and leave it alone. * - Driven: attach a `ref` and call `set` / `increment` / `reset` / `getValue`. * * @example * const ref = useRef(null); * * ref.current?.set([1, 2, 3]); * ref.current?.set((prev) => prev.map((v) => v + 1)); */ export declare const FlipCardPanel: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;