@1771technologies/lytenyte-pro
Version:
10 lines (9 loc) • 475 B
TypeScript
import { Dispatch, PropsWithChildren, SetStateAction } from 'react';
export interface PillManagerControls {
activeRow: string | null;
setActiveRow: Dispatch<SetStateAction<string | null>>;
activePill: string | null;
setActivePill: Dispatch<SetStateAction<string | null>>;
}
export declare function PillManagerControlsProvider(props: PropsWithChildren): import("react/jsx-runtime").JSX.Element;
export declare const usePillControls: () => PillManagerControls;