import { Construct } from 'constructs';
import * as google from '@cdktf/provider-google';
interface IPrivateBucketProps {
    prefix: string;
    location: string;
    policy?: string;
}
declare class PrivateBucket extends Construct {
    readonly bucket: google.storageBucket.StorageBucket;
    constructor(scope: Construct, id: string, props: IPrivateBucketProps);
}
export { PrivateBucket, IPrivateBucketProps };
