@1771technologies/lytenyte-pro
Version:
13 lines (12 loc) • 691 B
TypeScript
import { Dispatch, SetStateAction } from 'react';
import { RowProps } from './pill-manager-types';
interface PillRowContext {
readonly expanded: boolean;
readonly expandable: boolean;
readonly setExpanded: Dispatch<SetStateAction<boolean>>;
readonly pillSource: RowProps["pillSource"];
}
declare const PillRowContext: import('react').Context<PillRowContext>;
export declare const usePillRow: () => PillRowContext;
export declare const PillManagerRow: import('react').ForwardRefExoticComponent<Omit<import('react').ClassAttributes<HTMLDivElement> & import('react').HTMLAttributes<HTMLDivElement> & RowProps, "ref"> & import('react').RefAttributes<HTMLDivElement>>;
export {};