import type { Maybe } from "../../../common/Maybe";
import type { CloudFormationCustomResourcesType } from "../../Resources/CloudFormationCustomResources";
import type { ResourceHelper } from "../ResourceHelper";
export declare function getDefaultAwsCustomResourceProperties(awsType: string): object;
export declare function getAwsCustomResourcesUtilities(helper: ResourceHelper<CloudFormationCustomResourcesType>): AwsCustomResourcesUtils;
export interface AwsCustomResourcesUtils {
    templateByAWSType(awsType: string, name?: string): void;
    getIcon(): Maybe<string>;
}
