import { FC } from "react";
import { BoxProps } from "@material-ui/core";
export interface SkrimProps extends BoxProps {
/** The angle the skrim should be on */
angle?: number;
skrimColor?: "light" | "dark";
}
/**
* A skrim covers an image with a linear gradient, allowing text to be visible over it.
* Extends [`@material-ui/core/Box`](https://material-ui.com/components/box/) so
* you can apply positioning information
*
* @example
* Children
*/
export declare const Skrim: FC;
//# sourceMappingURL=index.d.ts.map