import { CustomResource } from "aws-cdk-lib";
import { Construct } from "constructs";
export interface DbfsFileProperties {
    workspaceUrl: string;
    path: string;
    base64Bytes: string;
}
export interface DbfsFileProps extends DbfsFileProperties {
    readonly serviceToken: string;
}
export declare class DbfsFile extends CustomResource {
    constructor(scope: Construct, id: string, props: DbfsFileProps);
}
