/**
 * Manages the open and closed states of the chattr UI.
 *
 * @returns An object containing the current state and a function to toggle it.
 *
 * @default isOpen false
 */
export default function useChattr(): {
    isOpen: boolean;
    toggle: () => void;
};
