import * as React from 'react';
import { AppToolsScreen, ComponentSync } from '@nu-art/thunderstorm/frontend';
import { ResolvableContent } from '@nu-art/ts-common';
type Props = {
    pageTitle?: ResolvableContent<string>;
};
type State = {};
export declare class ATS_FileUploader extends ComponentSync<Props, State> {
    static screen: AppToolsScreen;
    static defaultProps: Partial<Props>;
    constructor(p: Props);
    render(): React.JSX.Element;
}
export {};
