import { VerticalAlignment } from "microboard-temp"; import React from "react"; type Props = { onPick: (alignment: VerticalAlignment) => void; alignment?: "top" | "bottom" | "center"; }; export declare function VerticalAlignmentPicker({ onPick, alignment, }: Props): React.ReactElement; export {};