@redocly/graphql-docs
Version:
Redocly GraphQL docs
13 lines (12 loc) • 504 B
TypeScript
import type { PropsWithChildren, ReactElement } from 'react';
type ShareLinkProps = {
to: string;
className?: string;
security?: boolean;
id?: string;
'aria-label'?: string;
};
export declare function Link(props: PropsWithChildren<ShareLinkProps>): ReactElement | null;
export declare const StyledShareLink: import("styled-components").StyledComponent<typeof Link, any, {}, never>;
export declare function ShareLink(props: PropsWithChildren<ShareLinkProps>): ReactElement;
export {};