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 {};
