import React from 'react';
import { TableCell } from '../r-table';
import type { StaticProps } from '../types';
export declare class StaticFieldRenderer extends TableCell {
    static defaultProps: {
        wrapperComponent: string;
    };
    render(): JSX.Element;
}
export default class StaticControl extends React.Component<StaticProps, any> {
    static defaultProps: {
        placeholder: string;
    };
    handleQuickChange: (values: any, saveImmediately: boolean | any, savePristine?: boolean, options?: {
        resetOnFailed?: boolean;
        reload?: string;
    }) => Promise<void>;
    render(): JSX.Element;
}
export declare class StaticControlRenderer extends StaticControl {
}
