import type { LabelPropType, LinkProps, SkipNavAPI, SkipNavStates, Stringified } from '../../schema'; import type { JSX } from '../../stencil-public-runtime'; export declare class KolSkipNav implements SkipNavAPI { private firstLinkRef?; render(): JSX.Element; focus(): Promise; _label: LabelPropType; _links: Stringified; state: SkipNavStates; validateLabel(value?: LabelPropType, _oldValue?: LabelPropType, initial?: boolean): void; validateLinks(value?: Stringified): void; componentWillLoad(): void; disconnectedCallback(): void; }