@hhgtech/hhg-components
Version:
Hello Health Group common components
16 lines (15 loc) • 676 B
TypeScript
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<any>;
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, 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 {};