export interface PropertyMapping {
    render: string;
    digitalOcean: string;
}
export declare const servicePropertyMappings: Record<string, PropertyMapping>;
export declare const databasePropertyMappings: Record<string, PropertyMapping>;
/**
 * Gets the correct property name for a specific provider
 *
 * @param property - The generic property name
 * @param provider - The target provider
 * @param isDatabase - Whether this is a database property
 * @returns The provider-specific property name
 */
export declare function getPropertyForProvider(property: string, provider: 'render' | 'digitalOcean', isDatabase: boolean): string;
