import * as React from 'react';
import type { Opts } from 'linkifyjs';
interface LinkifyTextProps extends React.ComponentProps<'p'> {
    text?: string;
    pending?: boolean;
    onReady?: () => void;
    linkifyProps?: Opts;
    skeletonContainerProps?: React.ComponentProps<'div'>;
    skeletonLineProps?: React.ComponentProps<'span'>;
    skeletonLinesClassNames?: string[];
}
declare const LinkifyText: React.NamedExoticComponent<Omit<LinkifyTextProps, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
export { LinkifyText, type LinkifyTextProps };
//# sourceMappingURL=linkify-text.d.ts.map