import { DataTableProps } from "./DataTable";
import { ListType1 } from "@etsoo/shared";
/**
 * Culture table props
 */
export type CultureDataTableProps = Omit<DataTableProps, "columns"> & {
    cultures: ListType1[];
    cultureLabel?: string;
    editable?: boolean;
    titleLabel?: string;
    hasDescription?: boolean;
    descriptionLabel?: string;
};
/**
 * Culture DataTable
 * @param props Props
 * @returns Component
 */
export declare function CultureDataTable(props: CultureDataTableProps): import("react/jsx-runtime").JSX.Element;
