@os-design/website
Version: 
9 lines • 350 B
TypeScript
import { WithDarkMode, WithSizing } from '@os-design/utils';
import { BaseProps } from '@os-design/styled';
import React from 'react';
export interface SectionProps extends BaseProps, WithDarkMode, WithSizing {
    extraPaddingTop?: boolean;
}
declare const Section: React.FC<SectionProps>;
export default Section;
//# sourceMappingURL=index.d.ts.map