/** @jsxRuntime classic */ /** @jsx jsx */ import React from 'react'; interface Props { toggle: () => void; isDismissable: boolean; background?: string; maxWidth?: string; padding?: number; children?: React.ReactNode; } export declare const Container: React.ForwardRefExoticComponent>; export {};