import { HTMLAttributes, ReactNode, FC } from 'react'; declare const classes: { border: string; }; type PreProps = HTMLAttributes & { 'data-filename'?: string; 'data-copy'?: ''; 'data-language'?: string; 'data-word-wrap'?: ''; 'data-pagefind-ignore'?: string; icon?: ReactNode; }; declare const Pre: FC; export { Pre, type PreProps, classes };