/**
 * ================ ANALYTIC COLUMN PROPERTIES ================
 * Handle properties:
 * 1. Với styles, lấy những style có trong styles field, ngoại trừ 1 số trường hợp conflix với column properties bên dưới
 * 2. Với gridArea, có format {row: value trong 3 devices, column: value trong 3 devices}
 *    + row từ grid-row hoặc grid-area (available cho 3 devices)
 *    + column từ grid-column hoặc grid-area (available cho 3 devices)
 * 3. Với alignSelf, từ align-self, value: auto (default), start, center, end
 */
export declare const extractGridAreaValues: (gridArea: string) => {
    row: number;
    column: number;
};
export declare const columnAEP: (cssText: string) => import('../../../domains/entities/style.entity').ResultStyles;
