import type { FunctionComponent } from "react"; import type { QuickOptionType } from "../consts"; export declare const Wrapper: import("styled-components").StyledComponent<"div", any, {}, never>; declare type Props = { isLoading: boolean; isSelected: boolean; isDisabled: boolean; isSeparator?: boolean; type: QuickOptionType; price: string; onClick(type: QuickOptionType): void; }; declare const QuickOptionTileMobile: FunctionComponent; export default QuickOptionTileMobile;