import { InteractionStatesProps } from "../../shared"; import { ReactNode } from "react"; export interface UseTileProps extends InteractionStatesProps { variant: "checkable" | "link"; orientation: "horizontal" | "vertical"; children: ReactNode; } export declare function useTile({ variant, orientation, active, focus, hover, children }: UseTileProps): { tileProps: { className: string; }; markup: JSX.Element; };