UNPKG

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