import { HTMLAttributes, Ref } from 'react'; import { IComponentBaseProps } from '../types'; export declare const LIST = "list"; export declare const LIST_ROW = "list-row"; export declare const LIST_COL_WRAP = "list-col-wrap"; export declare const LIST_COL_GROW = "list-col-grow"; export interface ListProps extends HTMLAttributes, IComponentBaseProps { ref?: Ref; } export interface ListRowProps extends HTMLAttributes, IComponentBaseProps { ref?: Ref; }