import type { CSSProperties, FunctionComponent, ReactNode } from 'react'; interface HoverRevealStackProps { children: ReactNode; } interface HoverRevealStackItemProps { style?: CSSProperties; forceVisible?: boolean; left?: boolean; top?: boolean; right?: boolean; bottom?: boolean; children: ReactNode; } /** @public */ export interface HoverRevealStackComponent extends FunctionComponent { Item: FunctionComponent; } export declare const HoverRevealStack: HoverRevealStackComponent; export {};