import type { HTMLAttributes } from 'react';
import type { WithTestId } from '../types';
export interface PlateProps extends HTMLAttributes, WithTestId {
/** Тень. */
shadow?: 'z1' | 'z2' | 'z2-straight' | 'z3' | 'z4' | null;
/** Скругление углов. */
rounds?: 's' | 'm' | null;
}