import { CollectionRenderConfig, RenderPreset } from './types'; /** * Default render configurations for common collections. */ export declare const RENDER_CONFIGS: CollectionRenderConfig[]; /** * Gets render configuration for a collection. * * @param collectionId - Collection identifier. * @returns Render configuration or undefined if not found. */ export declare function getRenderConfig(collectionId: string): CollectionRenderConfig | undefined; /** * Gets available presets for a collection. * * @param collectionId - Collection identifier. * @returns Array of render presets. */ export declare function getPresetsForCollection(collectionId: string): RenderPreset[]; /** * Gets the default preset for a collection. * * @param collectionId - Collection identifier. * @returns Default render preset or undefined. */ export declare function getDefaultPreset(collectionId: string): RenderPreset | undefined; /** * Gets a specific preset by name for a collection. * * @param collectionId - Collection identifier. * @param presetName - Preset name. * @returns Render preset or undefined. */ export declare function getPreset(collectionId: string, presetName: string): RenderPreset | undefined; //# sourceMappingURL=render-presets.d.ts.map