import { ReactElement, ReactNode } from 'react'; export type TileWrapperProps = { id?: string; disabled?: boolean; /** @deprecated Use instead */ title?: string; /** @deprecated Use instead */ text?: string; children?: ReactNode; input: ReactElement; }; export declare const TileWrapper: ({ id, title, text, disabled, children, input, }: TileWrapperProps) => import("react/jsx-runtime").JSX.Element;