1 | import * as React from 'react';
|
2 | import { PickOptional } from '../../helpers/typeUtils';
|
3 | export interface SkipToContentProps extends React.HTMLProps<HTMLAnchorElement> {
|
4 |
|
5 | href: string;
|
6 |
|
7 | children?: React.ReactNode;
|
8 |
|
9 | className?: string;
|
10 |
|
11 | show?: boolean;
|
12 | }
|
13 | export declare class SkipToContent extends React.Component<SkipToContentProps> {
|
14 | static displayName: string;
|
15 | static defaultProps: PickOptional<SkipToContentProps>;
|
16 | componentRef: React.RefObject<HTMLAnchorElement>;
|
17 | componentDidMount(): void;
|
18 | render(): JSX.Element;
|
19 | }
|
20 |
|
\ | No newline at end of file |