import { FC, ReactNode } from "react"; import { SxProps, Theme } from "@mui/material"; //#region src/components/ActionRow/ActionRow.d.ts interface ActionRowProps { message: string; startAdornment: ReactNode; endAdornment?: ReactNode; sx?: SxProps; } declare const ActionRow: FC; //#endregion export { ActionRow }; //# sourceMappingURL=ActionRow.d.ts.map