import React, { CSSProperties, MouseEventHandler, PropsWithChildren } from "react"; type Props = PropsWithChildren<{ active?: boolean; onClick?: MouseEventHandler; onClickContext?: MouseEventHandler; onDoubleClick?: MouseEventHandler; customStyle?: CSSProperties; }>; export declare function BoardName({ children, active, onClick, onClickContext, onDoubleClick, customStyle, }: Props): React.JSX.Element; export {};