import { ApiBase } from '../Implementation/ApiBase';
import { FlashingCellDefinition } from '../../AdaptableState/FlashingCellState';
import { AdaptableFlashingCell } from '../../AdaptableState/Common/AdaptableFlashingCell';
export declare class FlashingCellInternalApi extends ApiBase {
    /**
     * Merges a Flashing Cell Definition with default values
     * @param flashingCellDefinition Flashing Cell Definition to Merge
     */
    mergeFlashingCellDefinitionWithDefaults(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition;
    getAdaptableFlashingCellFor(primaryKey: string, columnId?: string): AdaptableFlashingCell | null;
    clearFlashingCellState(): void;
}
