import * as React from 'react';
import { BarStyleCellTextPlacement, BarStyleCellTextProperties } from '../../../../../AdaptableState/StyledColumns/Common/BarStyleProperties';
import { CellTextOption } from '../../../../../AdaptableState/StyledColumns/Common/CellTextOptions';
export declare const BarStyleCellTextLayoutEditor: React.FunctionComponent<{
    disabled?: boolean;
    cellTextProperties?: BarStyleCellTextProperties;
    onToggle: (token: CellTextOption, show: boolean) => void;
    onPlacementChange: (token: CellTextOption, patch: Partial<BarStyleCellTextPlacement>) => void;
}>;
