/**
 * 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;
};
