import React, { CSSProperties } from "react"; import { StyledComponentPropsWithRef } from "styled-components"; import * as S from "./styled"; type BlockDOMProps = Omit, "ref">; export type BlockProps = BlockDOMProps & { header?: React.ReactNode; headerWrap?: CSSProperties["flexWrap"]; actions?: React.ReactNode; builtIn?: boolean; collapsible?: boolean; defaultOpen?: boolean; withoutContainerStyles?: boolean; }; declare const Block: React.FC; export default Block;