import React, { type CSSProperties } from "react"; export type SkipLinksProps = { id?: string; className?: string; links: { label: string; anchor: string; id?: string; }[]; classes?: Partial>; style?: CSSProperties; }; /** @see */ export declare const SkipLinks: React.MemoExoticComponent>>; export default SkipLinks;