import React from 'react'; declare const margins: readonly ["2xs", "xs", "s", "m", "l"]; declare type Margin = typeof margins[number]; declare type Props = { margin?: Margin; width?: string | number; height?: string | number; }; export declare const Example: React.FC; export {};