import * as React from "react";
export interface SkipNavigationLinkProps extends React.HTMLProps<SkipNavigationLink> {
target: string;
label?: string;
}
export default class SkipNavigationLink extends React.Component<SkipNavigationLinkProps, any> {
render(): JSX.Element;
}