strapi-plugin-firebase-authentication
Version:
Allows easy integration between clients utilizing Firebase for authentication and Strapi
19 lines (18 loc) • 522 B
TypeScript
import PropTypes from "prop-types";
interface SearchURLQuery {
label: string;
placeholder: string;
}
declare const SearchURLQuery: {
({ label, placeholder }: SearchURLQuery): import("react/jsx-runtime").JSX.Element;
defaultProps: {
placeholder: undefined;
trackedEvent: null;
};
propTypes: {
label: PropTypes.Validator<string>;
placeholder: PropTypes.Requireable<string>;
trackedEvent: PropTypes.Requireable<string>;
};
};
export default SearchURLQuery;