import { PostProcessStageCollection, PostProcessStage, PostProcessStageComposite } from 'cesium'; import { PickCesiumProps } from './types'; export type PostProcessStageCesiumProps = PickCesiumProps; export type PostProcessStageProps = PostProcessStageCesiumProps; declare const cesiumProps: readonly ["enabled", "selected"]; export declare const createPostProcessStage: (opts: { name: string; props: (keyof UniformProps)[]; readonlyProps?: (keyof UniformProps)[]; noMount?: boolean; create(props: Readonly, postProcessStages: PostProcessStageCollection): PostProcessStage | PostProcessStageComposite; }) => import('./component').CesiumComponentType; export default createPostProcessStage;