import type { ReactNode } from "react"; import React from "react"; import "./HorizontalTile.scss"; interface HorizontalTileProps extends React.ComponentPropsWithoutRef<"div"> { title: string; button: ReactNode; subText?: string; onClickTitle?: () => void; titleTooltip?: string; subtextToolTip?: string; selected: boolean; } export declare const HorizontalTile: ({ title, subText, onClickTitle, titleTooltip, subtextToolTip, button, selected, ...rest }: HorizontalTileProps) => JSX.Element; export {}; //# sourceMappingURL=HorizontalTile.d.ts.map