UNPKG

react-chrono

Version:
11 lines (10 loc) 279 B
/** * Custom hook to handle text display toggle functionality * @returns Object with toggle states and functions */ export declare const useToggleControls: () => { expandDetails: boolean; showText: boolean; toggleExpand: () => void; toggleText: () => void; };