import { ComputedRef } from 'vue';
import type { RowProps } from 'element-plus';
type IRowProps = Partial<Omit<RowProps, 'tag'>>;
export declare function useRow(props: Readonly<IRowProps> | IRowProps): {
    rowStyle: ComputedRef<{
        marginLeft: string;
        marginRight: string;
    }>;
    rowClass: ComputedRef<string[]>;
};
export {};
