import React from 'react'; export interface Props { href?: string; block?: boolean; className?: string; } declare const defaultProps: { href: string; block: boolean; className: string; }; type NativeAttrs = Omit, keyof Props>; export type FooterLinkProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Omit, "className" | "href" | "block">>; export default _default;