import React from 'react'; import { FocusedType, GATrackingCode } from "../types"; export declare const StyledFakeInputSearchMobile: import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme; as?: React.ElementType; }, React.DetailedHTMLProps, HTMLDivElement>, {}>; type Props = { focused: FocusedType; onClick?: () => void; value?: string; trackingAttributes?: GATrackingCode; inputSearchPlaceholder?: string; }; export declare function MobileFakeInput({ focused, value, onClick, trackingAttributes, inputSearchPlaceholder, }: Props): React.JSX.Element; export {};