import { AlertProps } from './interfaces'; import { InternalBaseComponentProps } from '../internal/hooks/use-base-component'; import { SomeRequired } from '../internal/types'; declare type InternalAlertProps = SomeRequired & InternalBaseComponentProps; export default function InternalAlert({ type, visible, dismissible, dismissAriaLabel, children, header, buttonText, action, onDismiss, onButtonClick, __internalRootRef, ...rest }: InternalAlertProps): JSX.Element; export {}; //# sourceMappingURL=internal.d.ts.map