import type { CSSProperties, ComputedRef } from 'vue';
import type { DkRowPropsType } from '../../dkrow/src/prop';
import type { ClassListName } from '../../_interface';
interface DkRowType {
    classList: ComputedRef<ClassListName>;
    styleList: CSSProperties;
}
export declare const getRow: (props: DkRowPropsType) => DkRowType;
export {};
