import React from 'react'; import { ImageSourcePropType, ViewProps } from 'react-native'; export interface QuickAddProps { title: string; image: ImageSourcePropType; context: any; onPress: (context: any) => void; isSelected?: boolean; } export declare const itemMinWidth: number; declare const HorizontalScrollLayout: React.FC; declare const defaultStyles: (theme: import("../../../BrandConfigProvider").Theme) => readonly ["HorizontalScrollLayout", import("../../../BrandConfigProvider/styles/createStyles").NamedStyles<{ container: { paddingHorizontal: number; marginVertical: number; }; containerSingleItemView: { flex: number; justifyContent: "center"; }; leftItem: { marginHorizontal: number; }; rightItem: { marginStart: number; }; centerItem: { marginHorizontal: number; }; listView: { overflow: "visible"; }; tile: { backgroundColor: any; marginVertical: any; borderRadius: any; shadowOpacity: any; shadowRadius: any; shadowColor: any; }; }>]; declare module './../../../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export default HorizontalScrollLayout;