/** * The useShow hook allow you to know if the item is showing. * The item will re-render each time its visibility change. * * @returns - If the item is showing. */ export declare function useShow(): boolean | undefined;