declare type directionShort = 'l' | 'r' | 't' | 'b' | 'x' | 'y' | '';
declare type direction = '' | 'Left' | 'Right' | 'Top' | 'Bottom' | 'Horizontal' | 'Vertical';
declare type styleNameShort = 'm' | 'p';
declare type styleName = 'margin' | 'padding';
export declare type SystemProp = `${styleName}${direction}` | `${styleNameShort}${directionShort}`;
export {};
