/**
 * @athenna/database
 *
 * (c) João Lenon <lenon@athenna.io>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
import { ConstraintViolationException } from '#src/exceptions/ConstraintViolationException';
export type NotNullViolationMeta = {
    table?: string;
    column?: string;
    driver?: string;
    raw?: any;
};
export declare class NotNullViolationException extends ConstraintViolationException {
    /**
     * The column that received a null value, when known.
     */
    column?: string;
    constructor(meta?: NotNullViolationMeta);
}
