import { ChipColorKey, ChipColorScheme } from "@firecms/ui";
import React from "react";
export interface BoardColumnTitleProps {
    children: React.ReactNode;
    className?: string;
    "aria-label"?: string;
    color?: ChipColorKey | ChipColorScheme;
}
export declare function BoardColumnTitle({ children, className, color, ...props }: BoardColumnTitleProps): import("react/jsx-runtime").JSX.Element;
