import { Card } from '@sanity/ui';
import React, { ComponentProps } from 'react';
interface AlertProps extends Omit<ComponentProps<typeof Card>, 'title'> {
    title: React.ReactNode;
    status?: 'warning' | 'error' | 'info';
}
export declare function AlertStrip(props: AlertProps): React.JSX.Element;
export {};
//# sourceMappingURL=AlertStrip.d.ts.map