UNPKG

331 BTypeScriptView Raw
1import React from 'react';
2import type { PoweredByProps as PoweredByUiComponentProps } from '../ui/PoweredBy';
3type UiProps = Pick<PoweredByUiComponentProps, 'url'>;
4export type PoweredByProps = Omit<PoweredByUiComponentProps, keyof UiProps>;
5export declare function PoweredBy(props: PoweredByProps): React.JSX.Element;
6export {};