/// <reference types="react" />
import { BranchType, IBranchBrickProps, IBranchDatasource, IBranchValue } from './type';
export declare function BranchBrick(props: IBranchBrickProps): JSX.Element;
export interface IBranchHeader {
    branchType: BranchType;
    datasource: IBranchDatasource;
    value: IBranchValue;
    onChange: (value: IBranchValue) => void;
    disabled: boolean;
    readonly: boolean;
}
