import type { QColInstance } from './src/types';
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
import type { SFCWithInstall, Nullable } from '../../../types/helpers';
export declare const QCol: SFCWithInstall<DefineComponent<{
    tag: {
        type: StringConstructor;
        default: string;
    };
    cols: {
        type: (StringConstructor | NumberConstructor)[];
        default: null;
        validator: (value: Nullable<string | number>) => boolean;
    };
    offset: {
        type: (StringConstructor | NumberConstructor)[];
        default: null;
        validator: (value: Nullable<string | number>) => boolean;
    };
}, QColInstance, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
    tag: {
        type: StringConstructor;
        default: string;
    };
    cols: {
        type: (StringConstructor | NumberConstructor)[];
        default: null;
        validator: (value: Nullable<string | number>) => boolean;
    };
    offset: {
        type: (StringConstructor | NumberConstructor)[];
        default: null;
        validator: (value: Nullable<string | number>) => boolean;
    };
}>>, {
    tag: string;
    cols: string | number;
    offset: string | number;
}>>;
export type { QColProps, QColInstance } from './src/types';
