import { ImageSourcePropType } from "react-native"; import { ResizeMode } from "expo-av"; import { SizableStackProps, StackPropsBase } from "tamagui"; export type LmVideoProps = Pick & { src: string; containerProps?: SizableStackProps; posterSource?: ImageSourcePropType; isLooping?: boolean; resizeMode?: ResizeMode; useNativeControls?: boolean; autoplay?: boolean; }; //# sourceMappingURL=videoTypes.d.ts.map