import type { Column, TableOptions } from '@opendatasoft/visualizations';
export type DatasetRecord = {
    title: string;
    price: number;
    content: string;
    datePublished: string;
    isFeatured: boolean;
    wordCount: number;
    readingTime: number;
    url: string;
    geopoint: [number, number];
    region: string;
    geoshape: string;
    image: {
        thumbnail: boolean;
        url: string;
        filename: string;
    };
};
export declare const columns: Column[];
declare const options: TableOptions;
export default options;
