import { LensDistortionEffect } from 'postprocessing';
import { Vector2 } from 'three';
export interface LensDistortionPmndrsProps {
    /**
     * The distortion effect strength.
     */
    distortion?: Vector2 | [number, number];
    /**
     * The center point.
     */
    principalPoint?: Vector2 | [number, number];
    /**
     * The focal length.
     */
    focalLength?: Vector2 | [number, number];
    /**
     * The skew value.
     */
    skew?: number;
}
declare const _default: import('vue').DefineComponent<LensDistortionPmndrsProps, {
    pass: import('vue').ShallowRef<import('postprocessing').EffectPass | null>;
    effect: import('vue').ShallowRef<LensDistortionEffect | null>;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<LensDistortionPmndrsProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;
