import type { FunctionComponent } from "react"; import type { QuickOptionType } from "../consts"; declare type Props = { isLoading: boolean; isSelected: boolean; isDisabled: boolean; type: QuickOptionType; price: string; onClick(type: QuickOptionType): void; }; declare const QuickOptionTileDesktop: FunctionComponent; export default QuickOptionTileDesktop;