import * as pulumi from '@pulumi/pulumi';

interface Props {
    length?: number;
    import?: string;
}
/**
 * 生成随机后缀(模拟pulumi生成项目名)
 */
declare class RandomSuffixComponent extends pulumi.ComponentResource {
    private name;
    result?: pulumi.Output<string>;
    constructor(name: string, props: Props, opts?: pulumi.ComponentResourceOptions);
}

export { RandomSuffixComponent };
