react-instantsearch
Version:
⚡ Lightning-fast search for React, by Algolia
7 lines (6 loc) • 331 B
TypeScript
import React from 'react';
import type { PoweredByProps as PoweredByUiComponentProps } from '../ui/PoweredBy';
type UiProps = Pick<PoweredByUiComponentProps, 'url'>;
export type PoweredByProps = Omit<PoweredByUiComponentProps, keyof UiProps>;
export declare function PoweredBy(props: PoweredByProps): React.JSX.Element;
export {};