export declare const styleToString: (obj: Record<string, string | undefined>) => string;
export declare const defaultGetKey: (_data: unknown, i: number) => string;
/**
 * A function that provides properties/attributes for item element
 */
export type ItemProps<T = unknown> = (payload: {
    item: T;
    index: number;
}) => ItemAttrs | undefined;
