@redocly/asyncapi-docs
Version:
Async API docs for Redocly Realm
19 lines (18 loc) • 536 B
TypeScript
import type { PropsWithChildren, ReactElement } from 'react';
interface LinkProps {
to: string;
className?: string;
id?: string;
'aria-label'?: string;
}
interface LinkToFieldProps {
to?: string;
className?: string;
}
interface ShareLinkProps extends LinkProps {
ariaLabel?: string;
isActive?: boolean;
}
export declare function ShareLink(props: ShareLinkProps): ReactElement;
export declare const LinkToField: ({ to, className, }: PropsWithChildren<LinkToFieldProps>) => ReactElement | null;
export {};