interface SwaggerApiPropertyOptions {
    default?: unknown;
    description?: string;
    enum?: object;
    example?: unknown;
    format?: string;
    maximum?: number;
    minimum?: number;
    type?: 'array' | 'boolean' | 'integer' | 'number' | 'object' | 'string';
}
export declare function ApiPropertyOptionalIfAvailable(options?: SwaggerApiPropertyOptions): PropertyDecorator;
export {};
