import { CylinderGeometry } from "three"; export type CylinderParams = ConstructorParameters; export declare const requestCylinderGeometry: (params: [radiusTop?: number | undefined, radiusBottom?: number | undefined, height?: number | undefined, radialSegments?: number | undefined, heightSegments?: number | undefined, openEnded?: boolean | undefined, thetaStart?: number | undefined, thetaLength?: number | undefined], paramString?: string, context?: void) => CylinderGeometry, releaseCylinderGeometry: (object: CylinderGeometry | null | undefined) => boolean | import("@lincode/promiselikes").Cancellable | null | undefined;