import { CellTransformer, CellTransformerParams } from "../../grid/cell";
export interface Props {
    allowNotExistOption?: boolean;
    options?: string[];
}
export declare class SelectionTransformer extends CellTransformer {
    protected props: Props;
    constructor(props?: Props);
    format(params: CellTransformerParams): string;
    parse(params: CellTransformerParams): any;
}
export default SelectionTransformer;
