import * as H from 'history'; import * as React from 'react'; interface Props { location: H.Location; } interface State { copied: boolean; } /** * A repository header action that copies the current page's URL to the clipboard. */ export declare class CopyLinkAction extends React.PureComponent { state: { copied: boolean; }; componentDidUpdate(prevProps: Props, prevState: State): void; render(): JSX.Element | null; private onClick; } export {}; //# sourceMappingURL=CopyLinkAction.d.ts.map