import { ReactNode } from 'react'; import { CheckboxProps } from "../Checkbox"; export type TileProps = Omit & { /** @deprecated Use instead */ title?: string; /** @deprecated Use instead */ text?: string; children?: ReactNode; }; export declare const Tile: { ({ title, text, disabled, children, ...rest }: TileProps): import("react/jsx-runtime").JSX.Element; Icon: (props: import("./TileIcon").TileIconProps) => import("react/jsx-runtime").JSX.Element; Content: ({ children }: import("./TileContent").TileContentProps) => import("react/jsx-runtime").JSX.Element; };