import React from 'react'; export interface InsetProps { className?: string; children?: React.ReactNode; isCollapsible?: boolean; isError?: boolean; isSuccess?: boolean; header?: React.ReactNode; href?: string | null; withTopMargin?: boolean; withBottomMargin?: boolean; } declare function Inset({ children, className, header, href, isCollapsible, isError, isSuccess, withBottomMargin, withTopMargin }: InsetProps): React.ReactElement | null; declare const _default: import("styled-components").StyledComponent; export default _default;