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