import * as React from 'react';
import type { ColumnOptions, SharedColumnOptions } from './types';
type Value = {
    content: string;
    href: string;
};
type ReplacementElementAs = React.ComponentType<{
    href: string;
    children: string;
}>;
type Options = {
    elementAs?: ReplacementElementAs | string;
} & SharedColumnOptions<Value>;
type FilterParameters = {};
type AnchorColumn = ColumnOptions<Value, FilterParameters>;
declare function AnchorColumn(options: Options): AnchorColumn;
export default AnchorColumn;
