import GravityType from '../enums/gravity-type.enum.js';
/**
 * The gravity options
 */
type GravityOptions = {
    /**
     * The gravity type
     */
    type: GravityType;
    /**
     * The gravity offset
     */
    offset?: {
        /**
         * The gravity offset on the X axis
         */
        x: number;
        /**
         * The gravity offset on the y axis
         */
        y: number;
    };
};
/**
 * Sets the gravity.
 *
 * See https://github.com/imgproxy/imgproxy/blob/6f292443eafb2e39f9252175b61faa6b38105a7c/docs/generating_the_url.md#gravity for the imgproxy documentation
 *
 * @param options  The gravity options
 * @returns        The gravity param string
 */
declare const gravity: (options: GravityOptions) => string;
export default gravity;
export { GravityOptions };
