import type { CssStylesheetAST } from '@adobe/css-tools';
import { type Position } from '../features.js';
import { type BaseCheckArgs } from './check-base.js';
interface CheckDeclarationsArgs extends BaseCheckArgs {
    declarations: Array<{
        property: string;
        value: string;
        position?: Position;
    }>;
    offset?: {
        line: number;
        column: number;
    };
}
interface CheckStylesheetArgs extends BaseCheckArgs {
    stylesheet: CssStylesheetAST;
    offset?: {
        line: number;
        column: number;
    };
}
export declare const checkDeclarations: ({ clients, declarations, issues, offset }: CheckDeclarationsArgs) => void;
export declare const checkStylesheet: ({ clients, issues, stylesheet, offset }: CheckStylesheetArgs) => void;
export {};
//# sourceMappingURL=check-css.d.ts.map