import type { HTMLAttributes } from "react";
import type { RenderConditionalPortalProps } from "@react-md/portal";
export declare type SnackbarPosition = "bottom" | "top";
export interface SnackbarProps extends HTMLAttributes, RenderConditionalPortalProps {
/**
* The id for the snackbar element. This is required for a11y.
*/
id: string;
/**
* The position for the snackbar to be fixed within the viewport or a
* container element.
*/
position?: SnackbarPosition;
}
export declare const Snackbar: import("react").ForwardRefExoticComponent>;