import * as React from "react";
import { ViewProps } from "react-native";
import { LinkExit, LinkEvent, LinkSuccess } from "./ReactNativePlaidLinkSdk.types";
export type PlaidEmbeddedSearchViewProps = {
    token: string;
    onSuccess?: (success: LinkSuccess) => void;
    onExit?: (exit: LinkExit) => void;
    onEvent?: (event: LinkEvent) => void;
    onLoad?: () => void;
} & ViewProps;
export declare function PlaidEmbeddedSearchView(props: PlaidEmbeddedSearchViewProps): React.JSX.Element;
//# sourceMappingURL=PlaidEmbeddedSearchView.d.ts.map