import { BuildType } from "../models/builds";
import { ProjectType } from "../models/projects";
import { LabelType } from "../models/labels";
export interface BuildTableProps {
    caption?: JSX.Element;
    builds: Array<BuildType>;
    project: ProjectType;
    labels: LabelType[] | undefined;
    toolbar?: JSX.Element;
}
export declare function BuildTable({ caption, toolbar, builds, project, labels, }: BuildTableProps): Promise<string>;
